pub enum MessageScope {
Last,
All,
Message(MessageId),
}
Expand description
Message identifiers
Variants§
Last
Last message from current client
All
Messages from all clients
Message(MessageId)
Specific message
Trait Implementations§
Source§impl Clone for MessageScope
impl Clone for MessageScope
Source§fn clone(&self) -> MessageScope
fn clone(&self) -> MessageScope
Returns a duplicate 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 MessageScope
impl Debug for MessageScope
Auto Trait Implementations§
impl Freeze for MessageScope
impl RefUnwindSafe for MessageScope
impl Send for MessageScope
impl Sync for MessageScope
impl Unpin for MessageScope
impl UnwindSafe for MessageScope
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