pub struct ApplicationParameters {
pub encryption_key_state: Option<Rc4KeyState>,
}Expand description
Application-level parameters: the optional encryption key state.
Fields§
§encryption_key_state: Option<Rc4KeyState>The RC4 key state used to (en/de)crypt application data, if encryption is enabled.
Trait Implementations§
Source§impl Clone for ApplicationParameters
impl Clone for ApplicationParameters
Source§fn clone(&self) -> ApplicationParameters
fn clone(&self) -> ApplicationParameters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApplicationParameters
impl Debug for ApplicationParameters
Source§impl Default for ApplicationParameters
impl Default for ApplicationParameters
Source§fn default() -> ApplicationParameters
fn default() -> ApplicationParameters
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApplicationParameters
impl RefUnwindSafe for ApplicationParameters
impl Send for ApplicationParameters
impl Sync for ApplicationParameters
impl Unpin for ApplicationParameters
impl UnsafeUnpin for ApplicationParameters
impl UnwindSafe for ApplicationParameters
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