Enum kpdb::BinaryValue
[−]
[src]
pub enum BinaryValue {
Plain(Vec<u8>),
Protected(SecStr),
Ref(BinaryId),
}A value for entry's map with binaries.
Variants
Plain(Vec<u8>)Plain binary value.
Protected(SecStr)Protected binary value.
Ref(BinaryId)Reference to an item in the global binaries map.
Trait Implementations
impl Clone for BinaryValue[src]
fn clone(&self) -> BinaryValue
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for BinaryValue[src]
impl PartialEq for BinaryValue[src]
fn eq(&self, __arg_0: &BinaryValue) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &BinaryValue) -> bool
This method tests for !=.