pub struct ORAMConfig {Show 20 fields
pub name: String,
pub private_directory: String,
pub public_directory: String,
pub mountpoint: String,
pub algorithm: String,
pub cipher: String,
pub client_data_dir: String,
pub encrypted_encryption_key: String,
pub phc: String,
pub encryption_passphrase: String,
pub salt: String,
pub io: String,
pub n: i64,
pub z: i64,
pub b: i64,
pub init: bool,
pub disable_encryption: bool,
pub manual: bool,
pub foreground: bool,
pub interactive: bool,
}
Fields§
§name: String
§private_directory: String
§public_directory: String
§mountpoint: String
§algorithm: String
§cipher: String
§client_data_dir: String
§encrypted_encryption_key: String
§phc: String
§encryption_passphrase: String
§salt: String
§io: String
§n: i64
§z: i64
§b: i64
§init: bool
§disable_encryption: bool
§manual: bool
§foreground: bool
§interactive: bool
Trait Implementations§
Source§impl Clone for ORAMConfig
impl Clone for ORAMConfig
Source§fn clone(&self) -> ORAMConfig
fn clone(&self) -> ORAMConfig
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 ORAMConfig
impl Debug for ORAMConfig
Source§impl<'de> Deserialize<'de> for ORAMConfig
impl<'de> Deserialize<'de> for ORAMConfig
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
Auto Trait Implementations§
impl Freeze for ORAMConfig
impl RefUnwindSafe for ORAMConfig
impl Send for ORAMConfig
impl Sync for ORAMConfig
impl Unpin for ORAMConfig
impl UnwindSafe for ORAMConfig
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