[−][src]Struct twitch_irc::message::ClearMsgMessage
Message for when a single message is deleted from chat.
The deleted message is identified by its message_id.
Fields
channel_login: StringLogin name of the channel that the deleted message was posted in.
sender_login: Stringlogin name of the user that sent the original message that was deleted by this
CLEARMSG.
message_id: StringID of the message that was deleted.
message_text: StringText of the message that was deleted
is_action: boolWhether the deleted message was an action (/me)
server_timestamp: DateTime<Utc>server timestamp for the time when the delete command was executed.
source: IRCMessageThe message that this ClearMsgMessage was parsed from.
Trait Implementations
impl Clone for ClearMsgMessage[src]
fn clone(&self) -> ClearMsgMessage[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ClearMsgMessage[src]
impl From<ClearMsgMessage> for IRCMessage[src]
fn from(msg: ClearMsgMessage) -> IRCMessage[src]
impl PartialEq<ClearMsgMessage> for ClearMsgMessage[src]
fn eq(&self, other: &ClearMsgMessage) -> bool[src]
fn ne(&self, other: &ClearMsgMessage) -> bool[src]
impl StructuralPartialEq for ClearMsgMessage[src]
impl TryFrom<IRCMessage> for ClearMsgMessage[src]
type Error = ServerMessageParseError
The type returned in the event of a conversion error.
fn try_from(
source: IRCMessage
) -> Result<ClearMsgMessage, ServerMessageParseError>[src]
source: IRCMessage
) -> Result<ClearMsgMessage, ServerMessageParseError>
Auto Trait Implementations
impl RefUnwindSafe for ClearMsgMessage
impl Send for ClearMsgMessage
impl Sync for ClearMsgMessage
impl Unpin for ClearMsgMessage
impl UnwindSafe for ClearMsgMessage
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,