pub struct Operation<Lhs, Rhs> {
pub lhs: Lhs,
pub rhs: Rhs,
pub kind: Option<Kind>,
pub cause: Option<Error>,
}
Fields§
§lhs: Lhs
§rhs: Rhs
§kind: Option<Kind>
§cause: Option<Error>
Trait Implementations§
impl<Lhs, Rhs> StructuralPartialEq for Operation<Lhs, Rhs>
Auto Trait Implementations§
impl<Lhs, Rhs> Freeze for Operation<Lhs, Rhs>
impl<Lhs, Rhs> !RefUnwindSafe for Operation<Lhs, Rhs>
impl<Lhs, Rhs> Send for Operation<Lhs, Rhs>
impl<Lhs, Rhs> Sync for Operation<Lhs, Rhs>
impl<Lhs, Rhs> Unpin for Operation<Lhs, Rhs>
impl<Lhs, Rhs> !UnwindSafe for Operation<Lhs, Rhs>
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