Struct ruma::TransactionId
source · pub struct TransactionId(/* private fields */);
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
impl TransactionId
source§impl TransactionId
impl TransactionId
sourcepub fn new() -> OwnedTransactionId
pub fn new() -> OwnedTransactionId
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
impl AsRef<[u8]> for TransactionId
source§impl AsRef<TransactionId> for OwnedTransactionId
impl AsRef<TransactionId> for OwnedTransactionId
source§fn as_ref(&self) -> &TransactionId
fn as_ref(&self) -> &TransactionId
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<TransactionId> for TransactionId
impl AsRef<TransactionId> for TransactionId
source§fn as_ref(&self) -> &TransactionId
fn as_ref(&self) -> &TransactionId
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<str> for TransactionId
impl AsRef<str> for TransactionId
source§impl Borrow<TransactionId> for OwnedTransactionId
impl Borrow<TransactionId> for OwnedTransactionId
source§fn borrow(&self) -> &TransactionId
fn borrow(&self) -> &TransactionId
Immutably borrows from an owned value. Read more
source§impl Clone for Box<TransactionId>
impl Clone for Box<TransactionId>
source§impl Debug for TransactionId
impl Debug for TransactionId
source§impl<'de> Deserialize<'de> for Box<TransactionId>
impl<'de> Deserialize<'de> for Box<TransactionId>
source§fn deserialize<D>(
deserializer: D,
) -> Result<Box<TransactionId>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Box<TransactionId>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for TransactionId
impl Display for TransactionId
source§impl From<&TransactionId> for Arc<TransactionId>
impl From<&TransactionId> for Arc<TransactionId>
source§fn from(s: &TransactionId) -> Arc<TransactionId>
fn from(s: &TransactionId) -> Arc<TransactionId>
Converts to this type from the input type.
source§impl From<&TransactionId> for Box<TransactionId>
impl From<&TransactionId> for Box<TransactionId>
source§fn from(id: &TransactionId) -> Box<TransactionId>
fn from(id: &TransactionId) -> Box<TransactionId>
Converts to this type from the input type.
source§impl From<&TransactionId> for OwnedTransactionId
impl From<&TransactionId> for OwnedTransactionId
source§fn from(id: &TransactionId) -> OwnedTransactionId
fn from(id: &TransactionId) -> OwnedTransactionId
Converts to this type from the input type.
source§impl From<&TransactionId> for Rc<TransactionId>
impl From<&TransactionId> for Rc<TransactionId>
source§fn from(s: &TransactionId) -> Rc<TransactionId>
fn from(s: &TransactionId) -> Rc<TransactionId>
Converts to this type from the input type.
source§impl From<&TransactionId> for String
impl From<&TransactionId> for String
source§fn from(id: &TransactionId) -> String
fn from(id: &TransactionId) -> String
Converts to this type from the input type.
source§impl<'a> From<&'a str> for &'a TransactionId
impl<'a> From<&'a str> for &'a TransactionId
source§fn from(s: &'a str) -> &'a TransactionId
fn from(s: &'a str) -> &'a TransactionId
Converts to this type from the input type.
source§impl From<OwnedTransactionId> for Box<TransactionId>
impl From<OwnedTransactionId> for Box<TransactionId>
source§fn from(a: OwnedTransactionId) -> Box<TransactionId>
fn from(a: OwnedTransactionId) -> Box<TransactionId>
Converts to this type from the input type.
source§impl Hash for TransactionId
impl Hash for TransactionId
source§impl Ord for TransactionId
impl Ord for TransactionId
source§impl PartialEq<&TransactionId> for OwnedTransactionId
impl PartialEq<&TransactionId> for OwnedTransactionId
source§fn eq(&self, other: &&TransactionId) -> bool
fn eq(&self, other: &&TransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<&str> for TransactionId
impl PartialEq<&str> for TransactionId
source§impl PartialEq<Box<TransactionId>> for &TransactionId
impl PartialEq<Box<TransactionId>> for &TransactionId
source§impl PartialEq<Box<TransactionId>> for TransactionId
impl PartialEq<Box<TransactionId>> for TransactionId
source§impl PartialEq<OwnedTransactionId> for &TransactionId
impl PartialEq<OwnedTransactionId> for &TransactionId
source§fn eq(&self, other: &OwnedTransactionId) -> bool
fn eq(&self, other: &OwnedTransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<OwnedTransactionId> for TransactionId
impl PartialEq<OwnedTransactionId> for TransactionId
source§fn eq(&self, other: &OwnedTransactionId) -> bool
fn eq(&self, other: &OwnedTransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<String> for TransactionId
impl PartialEq<String> for TransactionId
source§impl PartialEq<TransactionId> for &str
impl PartialEq<TransactionId> for &str
source§fn eq(&self, other: &TransactionId) -> bool
fn eq(&self, other: &TransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<TransactionId> for OwnedTransactionId
impl PartialEq<TransactionId> for OwnedTransactionId
source§fn eq(&self, other: &TransactionId) -> bool
fn eq(&self, other: &TransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<TransactionId> for str
impl PartialEq<TransactionId> for str
source§fn eq(&self, other: &TransactionId) -> bool
fn eq(&self, other: &TransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<str> for TransactionId
impl PartialEq<str> for TransactionId
source§impl PartialEq for TransactionId
impl PartialEq for TransactionId
source§fn eq(&self, other: &TransactionId) -> bool
fn eq(&self, other: &TransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for TransactionId
impl PartialOrd for TransactionId
source§fn partial_cmp(&self, other: &TransactionId) -> Option<Ordering>
fn partial_cmp(&self, other: &TransactionId) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moresource§impl Serialize for TransactionId
impl Serialize for TransactionId
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
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
impl ToOwned for TransactionId
§type Owned = OwnedTransactionId
type Owned = OwnedTransactionId
The resulting type after obtaining ownership.
source§fn to_owned(&self) -> <TransactionId as ToOwned>::Owned
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)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
impl Eq for TransactionId
impl StructuralPartialEq for TransactionId
Auto Trait Implementations§
impl Freeze for TransactionId
impl RefUnwindSafe for TransactionId
impl Send for TransactionId
impl !Sized for TransactionId
impl Sync for TransactionId
impl Unpin for TransactionId
impl UnwindSafe for TransactionId
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.