pub struct DecryptRaw {
pub this: Box<Expression>,
pub key: Option<Box<Expression>>,
pub iv: Option<Box<Expression>>,
pub aad: Option<Box<Expression>>,
pub encryption_method: Option<Box<Expression>>,
pub aead: Option<Box<Expression>>,
pub safe: Option<Box<Expression>>,
}Expand description
DecryptRaw
Fields§
§this: Box<Expression>§key: Option<Box<Expression>>§iv: Option<Box<Expression>>§aad: Option<Box<Expression>>§encryption_method: Option<Box<Expression>>§aead: Option<Box<Expression>>§safe: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for DecryptRaw
impl Clone for DecryptRaw
Source§fn clone(&self) -> DecryptRaw
fn clone(&self) -> DecryptRaw
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 DecryptRaw
impl Debug for DecryptRaw
Source§impl<'de> Deserialize<'de> for DecryptRaw
impl<'de> Deserialize<'de> for DecryptRaw
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
Source§impl PartialEq for DecryptRaw
impl PartialEq for DecryptRaw
Source§impl Serialize for DecryptRaw
impl Serialize for DecryptRaw
impl StructuralPartialEq for DecryptRaw
Auto Trait Implementations§
impl Freeze for DecryptRaw
impl RefUnwindSafe for DecryptRaw
impl Send for DecryptRaw
impl Sync for DecryptRaw
impl Unpin for DecryptRaw
impl UnwindSafe for DecryptRaw
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