pub struct CapsuleDecoded {
pub prelude: Prelude,
pub header_encoded: Vec<u8>,
pub payload_encoded: Vec<u8>,
pub header_decoded: Vec<u8>,
pub payload_decoded: Vec<u8>,
pub header_fields: Option<Vec<HeaderField>>,
}Fields§
§prelude: Prelude§header_encoded: Vec<u8>§payload_encoded: Vec<u8>§header_decoded: Vec<u8>§payload_decoded: Vec<u8>§header_fields: Option<Vec<HeaderField>>Trait Implementations§
Source§impl Clone for CapsuleDecoded
impl Clone for CapsuleDecoded
Source§fn clone(&self) -> CapsuleDecoded
fn clone(&self) -> CapsuleDecoded
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 CapsuleDecoded
impl Debug for CapsuleDecoded
Source§impl PartialEq for CapsuleDecoded
impl PartialEq for CapsuleDecoded
impl Eq for CapsuleDecoded
impl StructuralPartialEq for CapsuleDecoded
Auto Trait Implementations§
impl Freeze for CapsuleDecoded
impl RefUnwindSafe for CapsuleDecoded
impl Send for CapsuleDecoded
impl Sync for CapsuleDecoded
impl Unpin for CapsuleDecoded
impl UnsafeUnpin for CapsuleDecoded
impl UnwindSafe for CapsuleDecoded
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