Enum ruma_client_api::r0::push::PusherKind [−][src]
#[non_exhaustive]
pub enum PusherKind {
Http,
Email,
// some variants omitted
}Expand description
Which kind a pusher is.
This type can hold an arbitrary string. To check for formats that are not available as a
documented variant here, use its string representation, obtained through .as_str().
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
A pusher that sends HTTP pokes.
A pusher that emails the user with unread notifications.
Implementations
Trait Implementations
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for PusherKind
impl Send for PusherKind
impl Sync for PusherKind
impl Unpin for PusherKind
impl UnwindSafe for PusherKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more