#[non_exhaustive]pub struct SignaturesRules {
pub check_event_id_server: bool,
pub check_join_authorised_via_users_server: bool,
}
Expand description
The tweaks for verifying the signatures for a room version.
This type can be constructed from one of its constants (like SignaturesRules::V1
), or by
constructing a RoomVersionRules
first and using the signatures
field.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.check_event_id_server: bool
Whether to check the server of the event ID, disabled since room version 3.
Whether to check the server of the join_authorised_via_users_server
field in the
content
of m.room.member
events (spec), introduced in room version 8.
Implementations§
Source§impl SignaturesRules
impl SignaturesRules
Sourcepub const V1: SignaturesRules
Available on crate feature events
only.
pub const V1: SignaturesRules
events
only.Signatures verification rules as introduced in room version 1.
Sourcepub const V3: SignaturesRules
Available on crate feature events
only.
pub const V3: SignaturesRules
events
only.Signatures verification rules with tweaks introduced in room version 3.
Sourcepub const V8: SignaturesRules
Available on crate feature events
only.
pub const V8: SignaturesRules
events
only.Signatures verification rules with tweaks introduced in room version 8.
Trait Implementations§
Source§impl Clone for SignaturesRules
impl Clone for SignaturesRules
Source§fn clone(&self) -> SignaturesRules
fn clone(&self) -> SignaturesRules
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 moreAuto Trait Implementations§
impl Freeze for SignaturesRules
impl RefUnwindSafe for SignaturesRules
impl Send for SignaturesRules
impl Sync for SignaturesRules
impl Unpin for SignaturesRules
impl UnwindSafe for SignaturesRules
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