pub enum FormatCode {
Fixed(u8),
Variable(u8),
Compound(u8),
Array(u8),
}Expand description
Format-Code-Kategorie (Spec §1.2).
Variants§
Fixed(u8)
Spec §1.2.1 — fixed-width: 0..=8 octets payload, kategorie 0x4*-0x9*.
Variable(u8)
Spec §1.2.2 — variable-width: 1- oder 4-byte length + bytes, kategorie 0xA*/0xB*.
Compound(u8)
Spec §1.2.3 — compound: 1- oder 4-byte size + count + items, kategorie 0xC*/0xD*.
Array(u8)
Spec §1.2.4 — array: 1- oder 4-byte size + count + element- constructor + items, kategorie 0xE*/0xF*.
Implementations§
Trait Implementations§
Source§impl Clone for FormatCode
impl Clone for FormatCode
Source§fn clone(&self) -> FormatCode
fn clone(&self) -> FormatCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FormatCode
impl Debug for FormatCode
Source§impl PartialEq for FormatCode
impl PartialEq for FormatCode
Source§fn eq(&self, other: &FormatCode) -> bool
fn eq(&self, other: &FormatCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FormatCode
impl Eq for FormatCode
impl StructuralPartialEq for FormatCode
Auto Trait Implementations§
impl Freeze for FormatCode
impl RefUnwindSafe for FormatCode
impl Send for FormatCode
impl Sync for FormatCode
impl Unpin for FormatCode
impl UnsafeUnpin for FormatCode
impl UnwindSafe for FormatCode
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