pub struct ShadowLayer {
pub message: String,
pub passphrase: String,
pub files: Vec<FileEntry>,
}Expand description
Shadow layer descriptor for encoding.
Fields§
§message: StringText message for this shadow layer.
passphrase: StringPassphrase for this shadow layer (must be unique across all layers).
files: Vec<FileEntry>Optional file attachments for this shadow layer.
Auto Trait Implementations§
impl Freeze for ShadowLayer
impl RefUnwindSafe for ShadowLayer
impl Send for ShadowLayer
impl Sync for ShadowLayer
impl Unpin for ShadowLayer
impl UnsafeUnpin for ShadowLayer
impl UnwindSafe for ShadowLayer
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