pub struct IgnoredLargeOctets(pub Vec<u8>);Expand description
A potentially large vector of bytes, with a u32 size, that we ignore on deserialize. On deserialize, the bytes are read and discarded and the inner will be empty.
Tuple Fields§
§0: Vec<u8>Trait Implementations§
Source§impl Clone for IgnoredLargeOctets
impl Clone for IgnoredLargeOctets
Source§fn clone(&self) -> IgnoredLargeOctets
fn clone(&self) -> IgnoredLargeOctets
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 IgnoredLargeOctets
impl Debug for IgnoredLargeOctets
Source§impl Decodable for IgnoredLargeOctets
impl Decodable for IgnoredLargeOctets
Auto Trait Implementations§
impl Freeze for IgnoredLargeOctets
impl RefUnwindSafe for IgnoredLargeOctets
impl Send for IgnoredLargeOctets
impl Sync for IgnoredLargeOctets
impl Unpin for IgnoredLargeOctets
impl UnwindSafe for IgnoredLargeOctets
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