pub struct WString { /* private fields */ }
Expand description
A WeeChat String.
This type would be identical to the WBuffer
type, except that it is intended to be a
human-readable string. It is not just a Rust String because there is no way, at the protocol
level, to know what the encoding of the string is (it is the job of the application to know
this). The None
variant represents a NULL
string.
Implementations§
Trait Implementations§
Source§impl MessageType for WString
impl MessageType for WString
impl Eq for WString
impl StructuralPartialEq for WString
Auto Trait Implementations§
impl Freeze for WString
impl RefUnwindSafe for WString
impl Send for WString
impl Sync for WString
impl Unpin for WString
impl UnwindSafe for WString
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