pub struct ReplicatedTextSessionReport<E, S> { /* private fields */ }Expand description
Immutable session and residency report produced by neutral orchestration.
Implementations§
Source§impl<E, S> ReplicatedTextSessionReport<E, S>
impl<E, S> ReplicatedTextSessionReport<E, S>
Sourcepub const fn execution(&self) -> ExecutionResidency
pub const fn execution(&self) -> ExecutionResidency
Returns the selected resident or bounded execution class.
Sourcepub const fn execution_report(&self) -> &E
pub const fn execution_report(&self) -> &E
Returns backend-native parameter/runtime residency details.
Sourcepub const fn state_report(&self) -> &S
pub const fn state_report(&self) -> &S
Returns backend-native mutable-state residency details.
Sourcepub const fn distributed_commit(&self) -> Option<DistributedCommitOutcome>
pub const fn distributed_commit(&self) -> Option<DistributedCommitOutcome>
Returns this rank’s durable observation of the latest transaction decision.
Trait Implementations§
Source§impl<E: Clone, S: Clone> Clone for ReplicatedTextSessionReport<E, S>
impl<E: Clone, S: Clone> Clone for ReplicatedTextSessionReport<E, S>
Source§fn clone(&self) -> ReplicatedTextSessionReport<E, S>
fn clone(&self) -> ReplicatedTextSessionReport<E, S>
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 moreimpl<E: Eq, S: Eq> Eq for ReplicatedTextSessionReport<E, S>
impl<E: PartialEq, S: PartialEq> StructuralPartialEq for ReplicatedTextSessionReport<E, S>
Auto Trait Implementations§
impl<E, S> Freeze for ReplicatedTextSessionReport<E, S>
impl<E, S> RefUnwindSafe for ReplicatedTextSessionReport<E, S>where
E: RefUnwindSafe,
S: RefUnwindSafe,
impl<E, S> Send for ReplicatedTextSessionReport<E, S>
impl<E, S> Sync for ReplicatedTextSessionReport<E, S>
impl<E, S> Unpin for ReplicatedTextSessionReport<E, S>
impl<E, S> UnsafeUnpin for ReplicatedTextSessionReport<E, S>where
E: UnsafeUnpin,
S: UnsafeUnpin,
impl<E, S> UnwindSafe for ReplicatedTextSessionReport<E, S>where
E: UnwindSafe,
S: UnwindSafe,
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