Struct core_crypto::prelude::MlsCustomConfiguration
source · pub struct MlsCustomConfiguration {
pub key_rotation_span: Option<Duration>,
pub wire_policy: MlsWirePolicy,
pub out_of_order_tolerance: u32,
pub maximum_forward_distance: u32,
}
Expand description
The configuration parameters for a group/conversation which are not handled natively by openmls
Fields§
§key_rotation_span: Option<Duration>
Duration in seconds after which we will automatically force a self_update commit
wire_policy: MlsWirePolicy
Defines if handshake messages are encrypted or not
out_of_order_tolerance: u32
Window for which decryption secrets are kept within an epoch. Use this with caution since this affects forward secrecy within an epoch. Use this when the Delivery Service cannot guarantee application messages order.
maximum_forward_distance: u32
How many application messages can be skipped. Use this when the Delivery Service can drop application messages
Trait Implementations§
source§impl Clone for MlsCustomConfiguration
impl Clone for MlsCustomConfiguration
source§fn clone(&self) -> MlsCustomConfiguration
fn clone(&self) -> MlsCustomConfiguration
Returns a copy 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 MlsCustomConfiguration
impl Debug for MlsCustomConfiguration
source§impl Default for MlsCustomConfiguration
impl Default for MlsCustomConfiguration
source§impl<'de> Deserialize<'de> for MlsCustomConfiguration
impl<'de> Deserialize<'de> for MlsCustomConfiguration
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 MlsCustomConfiguration
impl RefUnwindSafe for MlsCustomConfiguration
impl Send for MlsCustomConfiguration
impl Sync for MlsCustomConfiguration
impl Unpin for MlsCustomConfiguration
impl UnwindSafe for MlsCustomConfiguration
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read moresource§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