pub enum LiteralData {
Binary(Vec<u8>),
Text(String),
}Expand description
The contents of a LiteralPacket.
Variants§
Trait Implementations§
Source§impl Clone for LiteralData
impl Clone for LiteralData
Source§fn clone(&self) -> LiteralData
fn clone(&self) -> LiteralData
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 moreAuto Trait Implementations§
impl Freeze for LiteralData
impl RefUnwindSafe for LiteralData
impl Send for LiteralData
impl Sync for LiteralData
impl Unpin for LiteralData
impl UnwindSafe for LiteralData
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