pub struct RoomVersion {
    pub disposition: RoomDisposition,
    pub event_format: EventFormatVersion,
    pub state_res: StateResolutionVersion,
    pub enforce_key_validity: bool,
    pub special_case_aliases_auth: bool,
    pub strict_canonicaljson: bool,
    pub limit_notifications_power_levels: bool,
    pub extra_redaction_checks: bool,
    pub allow_knocking: bool,
    pub restricted_join_rules: bool,
    pub knock_restricted_join_rule: bool,
    pub integer_power_levels: bool,
}

Fields§

§disposition: RoomDisposition

The stability of this room.

§event_format: EventFormatVersion

The format of the EventId.

§state_res: StateResolutionVersion

Which state resolution algorithm is used.

§enforce_key_validity: bool§special_case_aliases_auth: bool

m.room.aliases had special auth rules and redaction rules before room version 6.

before MSC2261/MSC2432,

§strict_canonicaljson: bool

Strictly enforce canonical json, do not allow:

  • Integers outside the range of [-2 ^ 53 + 1, 2 ^ 53 - 1]
  • Floats
  • NaN, Infinity, -Infinity
§limit_notifications_power_levels: bool

Verify notifications key while checking m.room.power_levels.

bool: MSC2209: Check ‘notifications’

§extra_redaction_checks: bool

Extra rules when verifying redaction events.

§allow_knocking: bool

Allow knocking in event authentication.

See room v7 specification for more information.

§restricted_join_rules: bool

Adds support for the restricted join rule.

See: MSC3289 for more information.

§knock_restricted_join_rule: bool

Adds support for the knock_restricted join rule.

See: MSC3787 for more information.

§integer_power_levels: bool

Enforces integer power levels.

See: MSC3667 for more information.

Implementations§

source§

impl RoomVersion

source

pub const V1: Self = _

source

pub const V2: Self = _

source

pub const V3: Self = _

source

pub const V4: Self = _

source

pub const V5: Self = _

source

pub const V6: Self = _

source

pub const V7: Self = _

source

pub const V8: Self = _

source

pub const V9: Self = Self::V8

source

pub const V10: Self = _

source

pub fn new(version: &RoomVersionId) -> Result<Self>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more