Struct matrix_sdk::encryption::verification::AcceptSettings
source · pub struct AcceptSettings { /* private fields */ }
Expand description
Customize the accept-reply for a verification process
Implementations§
source§impl AcceptSettings
impl AcceptSettings
sourcepub fn with_allowed_methods(
methods: Vec<ShortAuthenticationString>,
) -> AcceptSettings
pub fn with_allowed_methods( methods: Vec<ShortAuthenticationString>, ) -> AcceptSettings
Create settings restricting the allowed SAS methods
§Arguments
methods
- The methods this client allows at most
Trait Implementations§
source§impl Debug for AcceptSettings
impl Debug for AcceptSettings
source§impl Default for AcceptSettings
impl Default for AcceptSettings
source§fn default() -> AcceptSettings
fn default() -> AcceptSettings
All methods are allowed
Auto Trait Implementations§
impl Freeze for AcceptSettings
impl RefUnwindSafe for AcceptSettings
impl Send for AcceptSettings
impl Sync for AcceptSettings
impl Unpin for AcceptSettings
impl UnwindSafe for AcceptSettings
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, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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