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