pub enum WArray {
Chr(Vec<WChar>),
Int(Vec<WInteger>),
Lon(Vec<WLongInteger>),
Str(Vec<WString>),
Buf(Vec<WBuffer>),
Ptr(Vec<Pointer>),
Tim(Vec<WTime>),
Htb(Vec<WHashtable>),
Hda(Vec<GenericHdata>),
Inf(Vec<WInfo>),
Inl(Vec<WInfolist>),
Arr(Vec<WArray>),
}
Expand description
A WeeChat Array—a vec of a single WeeChat type.
Variants§
Chr(Vec<WChar>)
Int(Vec<WInteger>)
Lon(Vec<WLongInteger>)
Str(Vec<WString>)
Buf(Vec<WBuffer>)
Ptr(Vec<Pointer>)
Tim(Vec<WTime>)
Htb(Vec<WHashtable>)
Hda(Vec<GenericHdata>)
Inf(Vec<WInfo>)
Inl(Vec<WInfolist>)
Arr(Vec<WArray>)
Implementations§
Trait Implementations§
Source§impl MessageType for WArray
impl MessageType for WArray
impl Eq for WArray
impl StructuralPartialEq for WArray
Auto Trait Implementations§
impl Freeze for WArray
impl RefUnwindSafe for WArray
impl Send for WArray
impl Sync for WArray
impl Unpin for WArray
impl UnwindSafe for WArray
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