[][src]Enum ruma_client_api::r0::room::create_room::RoomPreset

pub enum RoomPreset {
    PrivateChat,
    PublicChat,
    TrustedPrivateChat,
}

A convenience parameter for setting a few default state events.

Variants

PrivateChat

join_rules is set to invite and history_visibility is set to shared.

PublicChat

join_rules is set to public and history_visibility is set to shared.

TrustedPrivateChat

Same as PrivateChat, but all initial invitees get the same power level as the creator.

Trait Implementations

impl Clone for RoomPreset[src]

impl Copy for RoomPreset[src]

impl Debug for RoomPreset[src]

impl<'de> Deserialize<'de> for RoomPreset[src]

impl Serialize for RoomPreset[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,