pub struct LogicalObject {
pub kind: ObjectKind,
pub payload: Vec<u8>,
}Expand description
A decrypted logical object with its kind tag and plaintext payload.
Fields§
§kind: ObjectKind§payload: Vec<u8>Trait Implementations§
Source§impl Clone for LogicalObject
impl Clone for LogicalObject
Source§fn clone(&self) -> LogicalObject
fn clone(&self) -> LogicalObject
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 moreAuto Trait Implementations§
impl Freeze for LogicalObject
impl RefUnwindSafe for LogicalObject
impl Send for LogicalObject
impl Sync for LogicalObject
impl Unpin for LogicalObject
impl UnsafeUnpin for LogicalObject
impl UnwindSafe for LogicalObject
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