pub enum IsStringValue {
No,
Yes,
}Expand description
Whether or not the plaintext has an implicit trailing null byte. This
should be set to Yes for secrets inside files, and to No for the
decryption key.
Variants§
Trait Implementations§
Source§impl Clone for IsStringValue
impl Clone for IsStringValue
Source§fn clone(&self) -> IsStringValue
fn clone(&self) -> IsStringValue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IsStringValue
impl Debug for IsStringValue
impl Copy for IsStringValue
Auto Trait Implementations§
impl Freeze for IsStringValue
impl RefUnwindSafe for IsStringValue
impl Send for IsStringValue
impl Sync for IsStringValue
impl Unpin for IsStringValue
impl UnwindSafe for IsStringValue
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