Struct ruma_client_api::session::login::v3::DiscoveryInfo
source · pub struct DiscoveryInfo {
pub homeserver: HomeserverInfo,
pub identity_server: Option<IdentityServerInfo>,
}
Available on crate features
client
or server
only.Expand description
Client configuration provided by the server.
Fields§
§homeserver: HomeserverInfo
Information about the homeserver to connect to.
identity_server: Option<IdentityServerInfo>
Information about the identity server to connect to.
Implementations§
source§impl DiscoveryInfo
impl DiscoveryInfo
sourcepub fn new(homeserver: HomeserverInfo) -> Self
pub fn new(homeserver: HomeserverInfo) -> Self
Create a new DiscoveryInfo
with the given homeserver.
Trait Implementations§
source§impl Clone for DiscoveryInfo
impl Clone for DiscoveryInfo
source§fn clone(&self) -> DiscoveryInfo
fn clone(&self) -> DiscoveryInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DiscoveryInfo
impl Debug for DiscoveryInfo
source§impl<'de> Deserialize<'de> for DiscoveryInfo
impl<'de> Deserialize<'de> for DiscoveryInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more