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: MlsWirePolicyDefines if handshake messages are encrypted or not
out_of_order_tolerance: u32Window 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: u32How 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§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