pub enum DraftConstructionIdentityFrameForm {
IndexedBranch {
first_index: u32,
second_index: Option<u32>,
branch: u8,
},
Tagged {
index: Option<u32>,
},
}Expand description
Typed prefix form of a draft construction identity frame.
Variants§
IndexedBranch
Two compact indices and a 02 or 03 branch.
Fields
Tagged
One nullable compact index followed by ff 02 01.
Trait Implementations§
Source§impl Clone for DraftConstructionIdentityFrameForm
impl Clone for DraftConstructionIdentityFrameForm
Source§fn clone(&self) -> DraftConstructionIdentityFrameForm
fn clone(&self) -> DraftConstructionIdentityFrameForm
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 moreimpl Copy for DraftConstructionIdentityFrameForm
impl Eq for DraftConstructionIdentityFrameForm
impl StructuralPartialEq for DraftConstructionIdentityFrameForm
Auto Trait Implementations§
impl Freeze for DraftConstructionIdentityFrameForm
impl RefUnwindSafe for DraftConstructionIdentityFrameForm
impl Send for DraftConstructionIdentityFrameForm
impl Sync for DraftConstructionIdentityFrameForm
impl Unpin for DraftConstructionIdentityFrameForm
impl UnsafeUnpin for DraftConstructionIdentityFrameForm
impl UnwindSafe for DraftConstructionIdentityFrameForm
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