pub enum FieldLength {
Fixed(usize),
LLVar(usize),
LLLVar(usize),
}Available on crate feature
std only.Expand description
Field length specification
Variants§
Fixed(usize)
Fixed length
LLVar(usize)
Variable length with 2-digit length indicator (LLVAR)
LLLVar(usize)
Variable length with 3-digit length indicator (LLLVAR)
Trait Implementations§
Source§impl Clone for FieldLength
impl Clone for FieldLength
Source§fn clone(&self) -> FieldLength
fn clone(&self) -> FieldLength
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 FieldLength
impl Debug for FieldLength
Source§impl PartialEq for FieldLength
impl PartialEq for FieldLength
impl Copy for FieldLength
impl Eq for FieldLength
impl StructuralPartialEq for FieldLength
Auto Trait Implementations§
impl Freeze for FieldLength
impl RefUnwindSafe for FieldLength
impl Send for FieldLength
impl Sync for FieldLength
impl Unpin for FieldLength
impl UnsafeUnpin for FieldLength
impl UnwindSafe for FieldLength
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