pub struct ReplayDecision {
pub used_capsule: bool,
pub capsule_id: Option<CapsuleId>,
pub fallback_to_planner: bool,
pub reason: String,
}Fields§
§used_capsule: bool§capsule_id: Option<CapsuleId>§fallback_to_planner: bool§reason: StringTrait Implementations§
Source§impl Clone for ReplayDecision
impl Clone for ReplayDecision
Source§fn clone(&self) -> ReplayDecision
fn clone(&self) -> ReplayDecision
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ReplayDecision
impl RefUnwindSafe for ReplayDecision
impl Send for ReplayDecision
impl Sync for ReplayDecision
impl Unpin for ReplayDecision
impl UnsafeUnpin for ReplayDecision
impl UnwindSafe for ReplayDecision
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