Type Alias AppserviceProtocol

Source
pub type AppserviceProtocol = Protocol<AppserviceProtocolInstance>;
Available on crate feature api and (crate features appservice-api-c or appservice-api-s) only.
Expand description

Metadata about a third party protocol, as returned by an appservice to a homeserver.

To create an instance of this type, first create a ProtocolInit and convert it via AppserviceProtocol::from / .into().

Aliased Type§

struct AppserviceProtocol {
    pub user_fields: Vec<String>,
    pub location_fields: Vec<String>,
    pub icon: String,
    pub field_types: BTreeMap<String, FieldType>,
    pub instances: Vec<AppserviceProtocolInstance>,
}

Fields§

§user_fields: Vec<String>

Fields which may be used to identify a third party user.

§location_fields: Vec<String>

Fields which may be used to identify a third party location.

§icon: String

A content URI representing an icon for the third party protocol.

If the compat-optional feature is enabled, this field being absent in JSON will result in an empty string instead of an error when deserializing.

§field_types: BTreeMap<String, FieldType>

The type definitions for the fields defined in user_fields and location_fields.

§instances: Vec<AppserviceProtocolInstance>

A list of objects representing independent instances of configuration.

Implementations

Source§

impl<I> Protocol<I>

Source

pub fn into<J>(self) -> Protocol<J>
where J: From<I>,

Convert this Protocol<I> to a Protocol<J>.

Trait Implementations

Source§

impl<I> Clone for Protocol<I>
where I: Clone,

Source§

fn clone(&self) -> Protocol<I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I> Debug for Protocol<I>
where I: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de, I> Deserialize<'de> for Protocol<I>
where I: Deserialize<'de>,

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<Protocol<I>, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<I> From<ProtocolInit<I>> for Protocol<I>

Source§

fn from(init: ProtocolInit<I>) -> Protocol<I>

Converts to this type from the input type.
Source§

impl<I> Serialize for Protocol<I>
where I: Serialize,

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more