pub struct EncryptedObject {
pub object_id: [u8; 32],
pub wrapped_key: WrappedKey,
pub header: ObjectHeader,
pub chunks: Vec<Vec<u8>>,
}Fields§
§object_id: [u8; 32]§wrapped_key: WrappedKey§header: ObjectHeader§chunks: Vec<Vec<u8>>Trait Implementations§
Source§impl Clone for EncryptedObject
impl Clone for EncryptedObject
Auto Trait Implementations§
impl Freeze for EncryptedObject
impl RefUnwindSafe for EncryptedObject
impl Send for EncryptedObject
impl Sync for EncryptedObject
impl Unpin for EncryptedObject
impl UnsafeUnpin for EncryptedObject
impl UnwindSafe for EncryptedObject
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