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
sourceimpl TransactionId
impl TransactionId
sourceimpl 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
sourceimpl AsRef<TransactionId> for OwnedTransactionId
impl AsRef<TransactionId> for OwnedTransactionId
sourcefn as_ref(&self) -> &TransactionId
fn as_ref(&self) -> &TransactionId
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl AsRef<str> for TransactionId
impl AsRef<str> for TransactionId
sourceimpl Borrow<TransactionId> for OwnedTransactionId
impl Borrow<TransactionId> for OwnedTransactionId
sourcefn borrow(&self) -> &TransactionId
fn borrow(&self) -> &TransactionId
Immutably borrows from an owned value. Read more
sourceimpl Clone for Box<TransactionId, Global>
impl Clone for Box<TransactionId, Global>
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TransactionId
impl Debug for TransactionId
sourceimpl<'de> Deserialize<'de> for Box<TransactionId, Global>
impl<'de> Deserialize<'de> for Box<TransactionId, Global>
sourcefn deserialize<D>(
deserializer: D
) -> Result<Box<TransactionId, Global>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
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
sourceimpl Display for TransactionId
impl Display for TransactionId
sourceimpl<'a> From<&'a str> for &'a TransactionId
impl<'a> From<&'a str> for &'a TransactionId
sourcefn from(s: &'a str) -> &'a TransactionId
fn from(s: &'a str) -> &'a TransactionId
Converts to this type from the input type.
sourceimpl<'_> From<&TransactionId> for String
impl<'_> From<&TransactionId> for String
sourcefn from(id: &TransactionId) -> String
fn from(id: &TransactionId) -> String
Converts to this type from the input type.
sourceimpl<'_> From<&TransactionId> for Box<TransactionId, Global>
impl<'_> From<&TransactionId> for Box<TransactionId, Global>
sourcefn from(id: &TransactionId) -> Box<TransactionId, Global>
fn from(id: &TransactionId) -> Box<TransactionId, Global>
Converts to this type from the input type.
sourceimpl<'_> From<&TransactionId> for Rc<TransactionId>
impl<'_> From<&TransactionId> for Rc<TransactionId>
sourcefn from(s: &TransactionId) -> Rc<TransactionId>
fn from(s: &TransactionId) -> Rc<TransactionId>
Converts to this type from the input type.
sourceimpl<'_> From<&TransactionId> for Arc<TransactionId>
impl<'_> From<&TransactionId> for Arc<TransactionId>
sourcefn from(s: &TransactionId) -> Arc<TransactionId>
fn from(s: &TransactionId) -> Arc<TransactionId>
Converts to this type from the input type.
sourceimpl<'_> From<&TransactionId> for OwnedTransactionId
impl<'_> From<&TransactionId> for OwnedTransactionId
sourcefn from(id: &TransactionId) -> OwnedTransactionId
fn from(id: &TransactionId) -> OwnedTransactionId
Converts to this type from the input type.
sourceimpl Hash for TransactionId
impl Hash for TransactionId
sourceimpl Ord for TransactionId
impl Ord for TransactionId
sourceimpl<'_> PartialEq<&TransactionId> for OwnedTransactionId
impl<'_> PartialEq<&TransactionId> for OwnedTransactionId
sourceimpl<'_> PartialEq<&str> for TransactionId
impl<'_> PartialEq<&str> for TransactionId
sourceimpl<'_> PartialEq<Box<TransactionId, Global>> for &TransactionId
impl<'_> PartialEq<Box<TransactionId, Global>> for &TransactionId
sourceimpl PartialEq<Box<TransactionId, Global>> for TransactionId
impl PartialEq<Box<TransactionId, Global>> for TransactionId
sourceimpl PartialEq<OwnedTransactionId> for TransactionId
impl PartialEq<OwnedTransactionId> for TransactionId
sourceimpl<'_> PartialEq<OwnedTransactionId> for &TransactionId
impl<'_> PartialEq<OwnedTransactionId> for &TransactionId
sourceimpl PartialEq<String> for TransactionId
impl PartialEq<String> for TransactionId
sourceimpl PartialEq<TransactionId> for str
impl PartialEq<TransactionId> for str
sourceimpl<'_> PartialEq<TransactionId> for &str
impl<'_> PartialEq<TransactionId> for &str
sourceimpl PartialEq<TransactionId> for OwnedTransactionId
impl PartialEq<TransactionId> for OwnedTransactionId
sourceimpl PartialEq<TransactionId> for TransactionId
impl PartialEq<TransactionId> for TransactionId
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &TransactionId) -> bool
fn ne(&self, other: &TransactionId) -> bool
This method tests for !=
.
sourceimpl PartialEq<str> for TransactionId
impl PartialEq<str> for TransactionId
sourceimpl PartialOrd<TransactionId> for TransactionId
impl PartialOrd<TransactionId> for TransactionId
sourcefn partial_cmp(&self, other: &TransactionId) -> Option<Ordering>
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 · sourcefn lt(&self, other: &Rhs) -> bool
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 · sourcefn 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 more
sourceimpl Serialize for TransactionId
impl Serialize for TransactionId
sourcefn 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
sourceimpl ToOwned for TransactionId
impl ToOwned for TransactionId
type Owned = OwnedTransactionId
type Owned = OwnedTransactionId
The resulting type after obtaining ownership.
sourcefn 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 · sourcefn 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 StructuralEq for TransactionId
impl StructuralPartialEq for TransactionId
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.