pub struct TxnMutation<'a> {
pub object_id: u64,
pub mutation: Mutation,
pub associated_object: AssocObj<'a>,
}
Fields§
§object_id: u64
§mutation: Mutation
§associated_object: AssocObj<'a>
Trait Implementations§
Source§impl Debug for TxnMutation<'_>
impl Debug for TxnMutation<'_>
Source§impl Ord for TxnMutation<'_>
impl Ord for TxnMutation<'_>
Source§impl PartialEq for TxnMutation<'_>
impl PartialEq for TxnMutation<'_>
Source§impl PartialOrd for TxnMutation<'_>
impl PartialOrd for TxnMutation<'_>
impl Eq for TxnMutation<'_>
Auto Trait Implementations§
impl<'a> Freeze for TxnMutation<'a>
impl<'a> !RefUnwindSafe for TxnMutation<'a>
impl<'a> Send for TxnMutation<'a>
impl<'a> Sync for TxnMutation<'a>
impl<'a> Unpin for TxnMutation<'a>
impl<'a> !UnwindSafe for TxnMutation<'a>
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, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
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