pub struct EncodedValue {
pub value_type: u8,
pub value: Vec<u8>,
}
Fields§
§value_type: u8
§value: Vec<u8>
Implementations§
Source§impl EncodedValue
impl EncodedValue
Trait Implementations§
Source§impl Clone for EncodedValue
impl Clone for EncodedValue
Source§fn clone(&self) -> EncodedValue
fn clone(&self) -> EncodedValue
Returns a copy 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 EncodedValue
impl Debug for EncodedValue
Source§impl PartialEq for EncodedValue
impl PartialEq for EncodedValue
Source§impl PartialOrd for EncodedValue
impl PartialOrd for EncodedValue
impl StructuralPartialEq for EncodedValue
Auto Trait Implementations§
impl Freeze for EncodedValue
impl RefUnwindSafe for EncodedValue
impl Send for EncodedValue
impl Sync for EncodedValue
impl Unpin for EncodedValue
impl UnwindSafe for EncodedValue
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