pub struct CoordinatedClaim {
pub state: CoordinatedRuntimeState,
pub trigger: CoordinatedPendingTrigger,
pub lease: ExecutionLease,
pub replayed: bool,
}Fields§
§state: CoordinatedRuntimeState§trigger: CoordinatedPendingTrigger§lease: ExecutionLease§replayed: boolTrait Implementations§
Source§impl Clone for CoordinatedClaim
impl Clone for CoordinatedClaim
Source§fn clone(&self) -> CoordinatedClaim
fn clone(&self) -> CoordinatedClaim
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CoordinatedClaim
impl Debug for CoordinatedClaim
Source§impl PartialEq for CoordinatedClaim
impl PartialEq for CoordinatedClaim
Source§fn eq(&self, other: &CoordinatedClaim) -> bool
fn eq(&self, other: &CoordinatedClaim) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CoordinatedClaim
impl StructuralPartialEq for CoordinatedClaim
Auto Trait Implementations§
impl Freeze for CoordinatedClaim
impl RefUnwindSafe for CoordinatedClaim
impl Send for CoordinatedClaim
impl Sync for CoordinatedClaim
impl Unpin for CoordinatedClaim
impl UnsafeUnpin for CoordinatedClaim
impl UnwindSafe for CoordinatedClaim
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