pub struct SignSettings {
pub include_time: bool,
pub include_seq_num: bool,
pub nonce_length: usize,
}Fields§
§include_time: bool§include_seq_num: bool§nonce_length: usizeImplementations§
Source§impl SignSettings
impl SignSettings
Trait Implementations§
Source§impl Clone for SignSettings
impl Clone for SignSettings
Source§fn clone(&self) -> SignSettings
fn clone(&self) -> SignSettings
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 SignSettings
impl Debug for SignSettings
Source§impl Default for SignSettings
impl Default for SignSettings
Source§impl Hash for SignSettings
impl Hash for SignSettings
Source§impl PartialEq for SignSettings
impl PartialEq for SignSettings
impl Copy for SignSettings
impl Eq for SignSettings
impl StructuralPartialEq for SignSettings
Auto Trait Implementations§
impl Freeze for SignSettings
impl RefUnwindSafe for SignSettings
impl Send for SignSettings
impl Sync for SignSettings
impl Unpin for SignSettings
impl UnwindSafe for SignSettings
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more