Struct ruma::TransactionId

source ·
#[repr(transparent)]
pub struct TransactionId(_);
Expand description

A Matrix transaction ID.

Transaction IDs in Matrix are opaque strings. This type is provided simply for its semantic value.

You can create one from a string (using .into()) but the recommended way is to use TransactionId::new() to generate a random one. If that function is not available for you, you need to activate this crate’s rand Cargo feature.

Implementations§

source§

impl TransactionId

source

pub fn as_str(&self) -> &str

Creates a string slice from this TransactionId.

source

pub fn as_bytes(&self) -> &[u8]

Creates a byte slice from this TransactionId.

source§

impl TransactionId

source

pub fn new() -> OwnedTransactionId

Available on crate feature rand only.

Creates a random transaction ID.

This will currently be a UUID without hyphens, but no guarantees are made about the structure of transaction IDs generated from this function.

Trait Implementations§

source§

impl AsRef<[u8]> for TransactionId

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<TransactionId> for OwnedTransactionId

source§

fn as_ref(&self) -> &TransactionId

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<str> for TransactionId

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Borrow<TransactionId> for OwnedTransactionId

source§

fn borrow(&self) -> &TransactionId

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<TransactionId, Global>

source§

fn clone(&self) -> Box<TransactionId, Global>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TransactionId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Box<TransactionId, Global>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<TransactionId, Global>, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for TransactionId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a str> for &'a TransactionId

source§

fn from(s: &'a str) -> &'a TransactionId

Converts to this type from the input type.
source§

impl From<&TransactionId> for Arc<TransactionId>

source§

fn from(s: &TransactionId) -> Arc<TransactionId>

Converts to this type from the input type.
source§

impl From<&TransactionId> for Box<TransactionId, Global>

source§

fn from(id: &TransactionId) -> Box<TransactionId, Global>

Converts to this type from the input type.
source§

impl From<&TransactionId> for OwnedTransactionId

source§

fn from(id: &TransactionId) -> OwnedTransactionId

Converts to this type from the input type.
source§

impl From<&TransactionId> for Rc<TransactionId>

source§

fn from(s: &TransactionId) -> Rc<TransactionId>

Converts to this type from the input type.
source§

impl From<&TransactionId> for String

source§

fn from(id: &TransactionId) -> String

Converts to this type from the input type.
source§

impl From<&str> for Box<TransactionId, Global>

source§

fn from(s: &str) -> Box<TransactionId, Global>

Converts to this type from the input type.
source§

impl From<Box<str, Global>> for Box<TransactionId, Global>

source§

fn from(s: Box<str, Global>) -> Box<TransactionId, Global>

Converts to this type from the input type.
source§

impl From<OwnedTransactionId> for Box<TransactionId, Global>

source§

fn from(a: OwnedTransactionId) -> Box<TransactionId, Global>

Converts to this type from the input type.
source§

impl From<String> for Box<TransactionId, Global>

source§

fn from(s: String) -> Box<TransactionId, Global>

Converts to this type from the input type.
source§

impl Hash for TransactionId

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
source§

impl Ord for TransactionId

source§

fn cmp(&self, other: &TransactionId) -> Ordering

This method returns an Ordering between self and other. Read more
source§

impl PartialEq<&TransactionId> for OwnedTransactionId

source§

fn eq(&self, other: &&TransactionId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&str> for TransactionId

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Box<TransactionId, Global>> for &TransactionId

source§

fn eq(&self, other: &Box<TransactionId, Global>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Box<TransactionId, Global>> for TransactionId

source§

fn eq(&self, other: &Box<TransactionId, Global>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<OwnedTransactionId> for &TransactionId

source§

fn eq(&self, other: &OwnedTransactionId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<OwnedTransactionId> for TransactionId

source§

fn eq(&self, other: &OwnedTransactionId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for TransactionId

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<TransactionId> for &str

source§

fn eq(&self, other: &TransactionId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<TransactionId> for OwnedTransactionId

source§

fn eq(&self, other: &TransactionId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<TransactionId> for TransactionId

source§

fn eq(&self, other: &TransactionId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<TransactionId> for str

source§

fn eq(&self, other: &TransactionId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for TransactionId

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<TransactionId> for TransactionId

source§

fn partial_cmp(&self, other: &TransactionId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for TransactionId

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl ToOwned for TransactionId

§

type Owned = OwnedTransactionId

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> <TransactionId as ToOwned>::Owned

Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · source§

fn clone_into(&self, target: &mut Self::Owned)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl Eq for TransactionId

source§

impl StructuralEq for TransactionId

source§

impl StructuralPartialEq for TransactionId

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more