Struct ruma_client_api::push::PusherIds
source · pub struct PusherIds {
pub pushkey: String,
pub app_id: String,
}Available on crate features
client or server only.Expand description
Strings to uniquely identify a Pusher.
Fields§
§pushkey: StringA unique identifier for the pusher.
The maximum allowed length is 512 bytes.
app_id: StringA reverse-DNS style identifier for the application.
The maximum allowed length is 64 bytes.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for PusherIds
impl<'de> Deserialize<'de> for PusherIds
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
source§impl PartialEq<PusherIds> for PusherIds
impl PartialEq<PusherIds> for PusherIds
impl Eq for PusherIds
impl StructuralEq for PusherIds
impl StructuralPartialEq for PusherIds
Auto Trait Implementations§
impl RefUnwindSafe for PusherIds
impl Send for PusherIds
impl Sync for PusherIds
impl Unpin for PusherIds
impl UnwindSafe for PusherIds
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.