pub struct PlainValue {
pub plain_value: Option<String>,
}Fields§
§plain_value: Option<String>the plain text value for server side encryption
Implementations§
Source§impl PlainValue
impl PlainValue
pub fn new() -> PlainValue
Trait Implementations§
Source§impl Clone for PlainValue
impl Clone for PlainValue
Source§fn clone(&self) -> PlainValue
fn clone(&self) -> PlainValue
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 PlainValue
impl Debug for PlainValue
Source§impl Default for PlainValue
impl Default for PlainValue
Source§fn default() -> PlainValue
fn default() -> PlainValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlainValue
impl<'de> Deserialize<'de> for PlainValue
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 PlainValue
impl PartialEq for PlainValue
Source§impl Serialize for PlainValue
impl Serialize for PlainValue
impl StructuralPartialEq for PlainValue
Auto Trait Implementations§
impl Freeze for PlainValue
impl RefUnwindSafe for PlainValue
impl Send for PlainValue
impl Sync for PlainValue
impl Unpin for PlainValue
impl UnwindSafe for PlainValue
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