pub struct SecurityRef {
pub signatures: Option<String>,
pub encryption: Option<String>,
}Expand description
Security layer reference.
Fields§
§signatures: Option<String>Path to signatures file.
encryption: Option<String>Path to encryption metadata.
Trait Implementations§
Source§impl Clone for SecurityRef
impl Clone for SecurityRef
Source§fn clone(&self) -> SecurityRef
fn clone(&self) -> SecurityRef
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 SecurityRef
impl Debug for SecurityRef
Source§impl<'de> Deserialize<'de> for SecurityRef
impl<'de> Deserialize<'de> for SecurityRef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SecurityRef
impl RefUnwindSafe for SecurityRef
impl Send for SecurityRef
impl Sync for SecurityRef
impl Unpin for SecurityRef
impl UnsafeUnpin for SecurityRef
impl UnwindSafe for SecurityRef
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