[][src]Struct ruma_identifiers::RoomVersionId

pub struct RoomVersionId(_);

A Matrix room version ID.

A RoomVersionId can be or converted or deserialized from a string slice, and can be converted or serialized back into a string as needed.

assert_eq!(RoomVersionId::try_from("1").unwrap().as_ref(), "1");

Methods

impl RoomVersionId[src]

pub fn version_1() -> Self[src]

Creates a version 1 room ID.

pub fn version_2() -> Self[src]

Creates a version 2 room ID.

pub fn version_3() -> Self[src]

Creates a version 3 room ID.

pub fn version_4() -> Self[src]

Creates a version 4 room ID.

pub fn version_5() -> Self[src]

Creates a version 5 room ID.

pub fn custom(id: String) -> Self[src]

Creates a custom room version ID from the given string slice.

pub fn is_official(&self) -> bool[src]

Whether or not this room version is an official one specified by the Matrix protocol.

pub fn is_custom(&self) -> bool[src]

Whether or not this is a custom room version.

pub fn is_version_1(&self) -> bool[src]

Whether or not this is a version 1 room.

pub fn is_version_2(&self) -> bool[src]

Whether or not this is a version 2 room.

pub fn is_version_3(&self) -> bool[src]

Whether or not this is a version 3 room.

pub fn is_version_4(&self) -> bool[src]

Whether or not this is a version 4 room.

pub fn is_version_5(&self) -> bool[src]

Whether or not this is a version 5 room.

Trait Implementations

impl<'expr> AsExpression<Nullable<Text>> for &'expr RoomVersionId[src]

type Expression = Bound<Nullable<Text>, Self>

The expression being returned

impl AsExpression<Nullable<Text>> for RoomVersionId[src]

type Expression = Bound<Nullable<Text>, Self>

The expression being returned

impl<'expr> AsExpression<Text> for &'expr RoomVersionId[src]

type Expression = Bound<Text, Self>

The expression being returned

impl AsExpression<Text> for RoomVersionId[src]

type Expression = Bound<Text, Self>

The expression being returned

impl AsRef<str> for RoomVersionId[src]

impl Clone for RoomVersionId[src]

impl Debug for RoomVersionId[src]

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

impl Display for RoomVersionId[src]

impl Eq for RoomVersionId[src]

impl From<RoomVersionId> for String[src]

impl<DB> FromSql<Text, DB> for RoomVersionId where
    String: FromSql<Text, DB>,
    DB: Backend, 
[src]

impl<__ST, __DB> FromSqlRow<__ST, __DB> for RoomVersionId where
    __DB: Backend,
    Self: FromSql<__ST, __DB>, 
[src]

impl Hash for RoomVersionId[src]

impl NotNull for RoomVersionId[src]

impl PartialEq<RoomVersionId> for RoomVersionId[src]

impl PartialEq<RoomVersionId> for str[src]

impl PartialEq<RoomVersionId> for String[src]

impl PartialEq<String> for RoomVersionId[src]

impl PartialEq<str> for RoomVersionId[src]

impl QueryId for RoomVersionId[src]

type QueryId = RoomVersionId

A type which uniquely represents Self in a SQL query. Read more

impl<__ST, __DB> Queryable<__ST, __DB> for RoomVersionId where
    __DB: Backend,
    Self: FromSql<__ST, __DB>, 
[src]

type Row = Self

The Rust type you'd like to map from. Read more

impl Serialize for RoomVersionId[src]

impl SingleValue for RoomVersionId[src]

impl StructuralEq for RoomVersionId[src]

impl StructuralPartialEq for RoomVersionId[src]

impl<__DB> ToSql<Nullable<Text>, __DB> for RoomVersionId where
    __DB: Backend,
    Self: ToSql<Text, __DB>, 
[src]

impl<DB> ToSql<Text, DB> for RoomVersionId where
    DB: Backend, 
[src]

impl<'_> TryFrom<&'_ str> for RoomVersionId[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'_> TryFrom<Cow<'_, str>> for RoomVersionId[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(room_version_id: Cow<str>) -> Result<Self, Error>[src]

Attempts to create a new Matrix room version ID from a string representation.

impl TryFrom<String> for RoomVersionId[src]

type Error = Error

The type returned in the event of a conversion error.

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: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> IntoNullable for T where
    T: NotNull, 

type Nullable = Nullable<T>

The nullable representation of this type. Read more

impl<T> IntoSql for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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>,