pub struct SealOptions {
pub encryption: EncryptionOptions,
pub integrity: EncryptionOptions,
pub ttl: i64,
pub timestamp_skew: u32,
pub local_offset: i32,
}Fields§
§encryption: EncryptionOptions§integrity: EncryptionOptions§ttl: i64§timestamp_skew: u32§local_offset: i32Implementations§
Source§impl SealOptions
impl SealOptions
Trait Implementations§
Source§impl Debug for SealOptions
impl Debug for SealOptions
Source§impl Default for SealOptions
impl Default for SealOptions
Source§impl PartialEq for SealOptions
impl PartialEq for SealOptions
impl StructuralPartialEq for SealOptions
Auto Trait Implementations§
impl Freeze for SealOptions
impl RefUnwindSafe for SealOptions
impl Send for SealOptions
impl Sync for SealOptions
impl Unpin for SealOptions
impl UnwindSafe for SealOptions
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> 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