pub struct VariableLengthField<'a> {
pub name: &'a str,
pub descriptor: &'a str,
pub value: Option<Value>,
pub comment: Option<&'a str>,
}Expand description
A variable-length coded field.
Fields§
§name: &'a strField name
descriptor: &'a strDescriptor, e.g. "ue(v)", "se(v)", "me(v)"
value: Option<Value>Decoded value
comment: Option<&'a str>Inline comment
Auto Trait Implementations§
impl<'a> Freeze for VariableLengthField<'a>
impl<'a> RefUnwindSafe for VariableLengthField<'a>
impl<'a> Send for VariableLengthField<'a>
impl<'a> Sync for VariableLengthField<'a>
impl<'a> Unpin for VariableLengthField<'a>
impl<'a> UnsafeUnpin for VariableLengthField<'a>
impl<'a> UnwindSafe for VariableLengthField<'a>
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