pub struct DraftConstructionIdentityFrame {
pub offset: usize,
pub prefix: Vec<u8>,
pub form: DraftConstructionIdentityFrameForm,
pub identity: String,
pub identity_offset: usize,
}Expand description
Complete identity frame in a reconstructed draft construction payload.
Fields§
§offset: usizePayload-relative offset of the opening 41 marker.
prefix: Vec<u8>Exact bytes from the opening marker through the identity introducer.
form: DraftConstructionIdentityFrameFormTyped frame form selected by the exact prefix.
identity: StringNonempty lowercase hexadecimal identity.
identity_offset: usizePayload-relative identity offset.
Trait Implementations§
Source§impl Clone for DraftConstructionIdentityFrame
impl Clone for DraftConstructionIdentityFrame
Source§fn clone(&self) -> DraftConstructionIdentityFrame
fn clone(&self) -> DraftConstructionIdentityFrame
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 Eq for DraftConstructionIdentityFrame
impl StructuralPartialEq for DraftConstructionIdentityFrame
Auto Trait Implementations§
impl Freeze for DraftConstructionIdentityFrame
impl RefUnwindSafe for DraftConstructionIdentityFrame
impl Send for DraftConstructionIdentityFrame
impl Sync for DraftConstructionIdentityFrame
impl Unpin for DraftConstructionIdentityFrame
impl UnsafeUnpin for DraftConstructionIdentityFrame
impl UnwindSafe for DraftConstructionIdentityFrame
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