[][src]Struct flubber_backend_proto::NewRoom

pub struct NewRoom {
    pub parent: Option<RoomID>,
    pub name: String,
    pub sendable: bool,
}

A request to create a new room with the given properties.

Fields

parent: Option<RoomID>

The room which is the parent of this room.

name: String

The name of the room.

sendable: bool

Whether the room can be sent to.

Trait Implementations

impl Clone for NewRoom[src]

impl Eq for NewRoom[src]

impl PartialEq<NewRoom> for NewRoom[src]

impl Debug for NewRoom[src]

impl Hash for NewRoom[src]

impl StructuralPartialEq for NewRoom[src]

impl StructuralEq for NewRoom[src]

impl Serialize for NewRoom[src]

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

impl Value for NewRoom[src]

Auto Trait Implementations

impl Send for NewRoom

impl Sync for NewRoom

impl Unpin for NewRoom

impl UnwindSafe for NewRoom

impl RefUnwindSafe for NewRoom

Blanket Implementations

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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