Struct matrix_sdk_base::ruma::TransactionId
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§
§impl TransactionId
impl TransactionId
§impl TransactionId
impl TransactionId
pub fn new() -> OwnedTransactionId
Available on crate feature rand
only.
pub fn new() -> OwnedTransactionId
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§
§impl AsRef<[u8]> for TransactionId
impl AsRef<[u8]> for TransactionId
§impl AsRef<TransactionId> for OwnedTransactionId
impl AsRef<TransactionId> for OwnedTransactionId
§fn as_ref(&self) -> &TransactionId
fn as_ref(&self) -> &TransactionId
Converts this type into a shared reference of the (usually inferred) input type.
§impl AsRef<TransactionId> for TransactionId
impl AsRef<TransactionId> for TransactionId
§fn as_ref(&self) -> &TransactionId
fn as_ref(&self) -> &TransactionId
Converts this type into a shared reference of the (usually inferred) input type.
§impl AsRef<str> for TransactionId
impl AsRef<str> for TransactionId
§impl Borrow<TransactionId> for OwnedTransactionId
impl Borrow<TransactionId> for OwnedTransactionId
§fn borrow(&self) -> &TransactionId
fn borrow(&self) -> &TransactionId
Immutably borrows from an owned value. Read more
§impl Clone for Box<TransactionId>
impl Clone for Box<TransactionId>
§fn clone(&self) -> Box<TransactionId>
fn clone(&self) -> Box<TransactionId>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for TransactionId
impl Debug for TransactionId
§impl<'de> Deserialize<'de> for Box<TransactionId>
impl<'de> Deserialize<'de> for Box<TransactionId>
§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
§impl Display for TransactionId
impl Display for TransactionId
§impl From<&TransactionId> for Arc<TransactionId>
impl From<&TransactionId> for Arc<TransactionId>
§fn from(s: &TransactionId) -> Arc<TransactionId>
fn from(s: &TransactionId) -> Arc<TransactionId>
Converts to this type from the input type.
§impl From<&TransactionId> for Box<TransactionId>
impl From<&TransactionId> for Box<TransactionId>
§fn from(id: &TransactionId) -> Box<TransactionId>
fn from(id: &TransactionId) -> Box<TransactionId>
Converts to this type from the input type.
§impl From<&TransactionId> for OwnedTransactionId
impl From<&TransactionId> for OwnedTransactionId
§fn from(id: &TransactionId) -> OwnedTransactionId
fn from(id: &TransactionId) -> OwnedTransactionId
Converts to this type from the input type.
§impl From<&TransactionId> for Rc<TransactionId>
impl From<&TransactionId> for Rc<TransactionId>
§fn from(s: &TransactionId) -> Rc<TransactionId>
fn from(s: &TransactionId) -> Rc<TransactionId>
Converts to this type from the input type.
§impl From<&TransactionId> for String
impl From<&TransactionId> for String
§fn from(id: &TransactionId) -> String
fn from(id: &TransactionId) -> String
Converts to this type from the input type.
§impl<'a> From<&'a str> for &'a TransactionId
impl<'a> From<&'a str> for &'a TransactionId
§fn from(s: &'a str) -> &'a TransactionId
fn from(s: &'a str) -> &'a TransactionId
Converts to this type from the input type.
§impl From<&str> for Box<TransactionId>
impl From<&str> for Box<TransactionId>
§fn from(s: &str) -> Box<TransactionId>
fn from(s: &str) -> Box<TransactionId>
Converts to this type from the input type.
§impl From<OwnedTransactionId> for Box<TransactionId>
impl From<OwnedTransactionId> for Box<TransactionId>
§fn from(a: OwnedTransactionId) -> Box<TransactionId>
fn from(a: OwnedTransactionId) -> Box<TransactionId>
Converts to this type from the input type.
§impl From<String> for Box<TransactionId>
impl From<String> for Box<TransactionId>
§fn from(s: String) -> Box<TransactionId>
fn from(s: String) -> Box<TransactionId>
Converts to this type from the input type.
§impl Hash for TransactionId
impl Hash for TransactionId
§impl Ord for TransactionId
impl Ord for TransactionId
§impl PartialEq<&TransactionId> for OwnedTransactionId
impl PartialEq<&TransactionId> for OwnedTransactionId
§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 ==
.§impl PartialEq<&str> for TransactionId
impl PartialEq<&str> for TransactionId
§impl PartialEq<Box<TransactionId>> for &TransactionId
impl PartialEq<Box<TransactionId>> for &TransactionId
§fn eq(&self, other: &Box<TransactionId>) -> bool
fn eq(&self, other: &Box<TransactionId>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialEq<Box<TransactionId>> for TransactionId
impl PartialEq<Box<TransactionId>> for TransactionId
§fn eq(&self, other: &Box<TransactionId>) -> bool
fn eq(&self, other: &Box<TransactionId>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialEq<OwnedTransactionId> for &TransactionId
impl PartialEq<OwnedTransactionId> for &TransactionId
§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 ==
.§impl PartialEq<OwnedTransactionId> for TransactionId
impl PartialEq<OwnedTransactionId> for TransactionId
§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 ==
.§impl PartialEq<String> for TransactionId
impl PartialEq<String> for TransactionId
§impl PartialEq<TransactionId> for &str
impl PartialEq<TransactionId> for &str
§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 ==
.§impl PartialEq<TransactionId> for OwnedTransactionId
impl PartialEq<TransactionId> for OwnedTransactionId
§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 ==
.§impl PartialEq<TransactionId> for String
impl PartialEq<TransactionId> for String
§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 ==
.§impl PartialEq<TransactionId> for str
impl PartialEq<TransactionId> for str
§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 ==
.§impl PartialEq<str> for TransactionId
impl PartialEq<str> for TransactionId
§impl PartialEq for TransactionId
impl PartialEq for TransactionId
§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 ==
.§impl PartialOrd for TransactionId
impl PartialOrd for TransactionId
§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 more§impl Serialize for TransactionId
impl Serialize for TransactionId
§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
§impl ToOwned for TransactionId
impl ToOwned for TransactionId
§type Owned = OwnedTransactionId
type Owned = OwnedTransactionId
The resulting type after obtaining ownership.
§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 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§
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.