#[repr(C)]pub enum GroupWhisperTargetMode {
All = 0,
Currentchannel = 1,
Parentchannel = 2,
Allparentchannel = 3,
Channelfamily = 4,
Ancestorchannelfamily = 5,
Subchannels = 6,
Endmarker = 7,
}Variants§
All = 0
Currentchannel = 1
Whisper the current channel of the client
Parentchannel = 2
Whisper the parent channel of whatever channel the client is currently in
Allparentchannel = 3
Whipser to the parent channel and all their parent channels as well
Channelfamily = 4
Whisper to the current channel and all its sub channels
Ancestorchannelfamily = 5
Whisper to the current channel, all its parent and sub channels.
Subchannels = 6
Whisper to all sub channels of the current channel of the client
Endmarker = 7
Trait Implementations§
Source§impl Clone for GroupWhisperTargetMode
impl Clone for GroupWhisperTargetMode
Source§fn clone(&self) -> GroupWhisperTargetMode
fn clone(&self) -> GroupWhisperTargetMode
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 GroupWhisperTargetMode
impl Debug for GroupWhisperTargetMode
Source§impl PartialEq for GroupWhisperTargetMode
impl PartialEq for GroupWhisperTargetMode
impl Copy for GroupWhisperTargetMode
impl Eq for GroupWhisperTargetMode
impl StructuralPartialEq for GroupWhisperTargetMode
Auto Trait Implementations§
impl Freeze for GroupWhisperTargetMode
impl RefUnwindSafe for GroupWhisperTargetMode
impl Send for GroupWhisperTargetMode
impl Sync for GroupWhisperTargetMode
impl Unpin for GroupWhisperTargetMode
impl UnwindSafe for GroupWhisperTargetMode
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