Enum revolt_models::v0::SystemMessage
source · pub enum SystemMessage {
Text {
content: String,
},
UserAdded {
id: String,
by: String,
},
UserRemove {
id: String,
by: String,
},
UserJoined {
id: String,
},
UserLeft {
id: String,
},
UserKicked {
id: String,
},
UserBanned {
id: String,
},
ChannelRenamed {
name: String,
by: String,
},
ChannelDescriptionChanged {
by: String,
},
ChannelIconChanged {
by: String,
},
ChannelOwnershipChanged {
from: String,
to: String,
},
}Expand description
System Event
Variants§
Text
UserAdded
UserRemove
UserJoined
UserLeft
UserKicked
UserBanned
ChannelRenamed
ChannelDescriptionChanged
ChannelIconChanged
ChannelOwnershipChanged
Trait Implementations§
source§impl Clone for SystemMessage
impl Clone for SystemMessage
source§fn clone(&self) -> SystemMessage
fn clone(&self) -> SystemMessage
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SystemMessage
impl Debug for SystemMessage
source§impl<'de> Deserialize<'de> for SystemMessage
impl<'de> Deserialize<'de> for SystemMessage
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 From<SystemMessage> for String
impl From<SystemMessage> for String
source§fn from(s: SystemMessage) -> String
fn from(s: SystemMessage) -> String
Converts to this type from the input type.
source§impl JsonSchema for SystemMessage
impl JsonSchema for SystemMessage
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresource§impl PartialEq for SystemMessage
impl PartialEq for SystemMessage
source§fn eq(&self, other: &SystemMessage) -> bool
fn eq(&self, other: &SystemMessage) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SystemMessage
impl Serialize for SystemMessage
impl Eq for SystemMessage
impl StructuralPartialEq for SystemMessage
Auto Trait Implementations§
impl RefUnwindSafe for SystemMessage
impl Send for SystemMessage
impl Sync for SystemMessage
impl Unpin for SystemMessage
impl UnwindSafe for SystemMessage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more