[][src]Struct ruma_client_api::r0::thirdparty::ProtocolInstance

pub struct ProtocolInstance {
    pub desc: String,
    pub icon: Option<String>,
    pub fields: HashMap<String, String>,
    pub network_id: String,
}

Metadata about an instance of a third party protocol.

Fields

desc: String

A human-readable description for the protocol, such as the name.

icon: Option<String>

An optional content URI representing the protocol.

fields: HashMap<String, String>

Preset values for fields the client may use to search by.

network_id: String

A unique identifier across all instances.

Trait Implementations

impl Clone for ProtocolInstance[src]

impl Debug for ProtocolInstance[src]

impl<'de> Deserialize<'de> for ProtocolInstance[src]

impl Serialize for ProtocolInstance[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,