Struct matrix_sdk_base::store::ChildTransactionId
source · pub struct ChildTransactionId(/* private fields */);
Expand description
A transaction id identifying a DependentQueuedRequest
rather than its
parent QueuedRequest
.
This thin wrapper adds some safety to some APIs, making it possible to
distinguish between the parent’s TransactionId
and the dependent event’s
own TransactionId
.
Implementations§
source§impl ChildTransactionId
impl ChildTransactionId
sourcepub fn new() -> Self
pub fn new() -> Self
Returns a new ChildTransactionId
.
Methods from Deref<Target = TransactionId>§
Trait Implementations§
source§impl Clone for ChildTransactionId
impl Clone for ChildTransactionId
source§fn clone(&self) -> ChildTransactionId
fn clone(&self) -> ChildTransactionId
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 moresource§impl Debug for ChildTransactionId
impl Debug for ChildTransactionId
source§impl Deref for ChildTransactionId
impl Deref for ChildTransactionId
source§impl<'de> Deserialize<'de> for ChildTransactionId
impl<'de> Deserialize<'de> for ChildTransactionId
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<ChildTransactionId> for OwnedTransactionId
impl From<ChildTransactionId> for OwnedTransactionId
source§fn from(val: ChildTransactionId) -> Self
fn from(val: ChildTransactionId) -> Self
Converts to this type from the input type.
source§impl From<String> for ChildTransactionId
impl From<String> for ChildTransactionId
source§impl PartialEq for ChildTransactionId
impl PartialEq for ChildTransactionId
source§fn eq(&self, other: &ChildTransactionId) -> bool
fn eq(&self, other: &ChildTransactionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ChildTransactionId
impl Serialize for ChildTransactionId
impl StructuralPartialEq for ChildTransactionId
Auto Trait Implementations§
impl Freeze for ChildTransactionId
impl RefUnwindSafe for ChildTransactionId
impl Send for ChildTransactionId
impl Sync for ChildTransactionId
impl Unpin for ChildTransactionId
impl UnwindSafe for ChildTransactionId
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more