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
Trait Implementations
Source§impl<'de, I> Deserialize<'de> for Protocol<I>where
I: Deserialize<'de>,
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>,
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>
impl<I> From<ProtocolInit<I>> for Protocol<I>
Source§fn from(init: ProtocolInit<I>) -> Protocol<I>
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,
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,
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