pub struct CrankOutcome {
pub advanced: bool,
pub slots_forgiven: u64,
pub caller_settle_ok: bool,
pub force_realize_needed: bool,
pub panic_needed: bool,
pub num_liquidations: u32,
pub num_liq_errors: u16,
pub num_gc_closed: u32,
pub last_cursor: u16,
pub sweep_complete: bool,
}Expand description
Outcome of a keeper crank operation
Fields§
§advanced: bool§slots_forgiven: u64§caller_settle_ok: bool§force_realize_needed: bool§panic_needed: bool§num_liquidations: u32§num_liq_errors: u16§num_gc_closed: u32§last_cursor: u16§sweep_complete: boolTrait Implementations§
Source§impl Clone for CrankOutcome
impl Clone for CrankOutcome
Source§fn clone(&self) -> CrankOutcome
fn clone(&self) -> CrankOutcome
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 moreSource§impl Debug for CrankOutcome
impl Debug for CrankOutcome
Source§impl PartialEq for CrankOutcome
impl PartialEq for CrankOutcome
impl Copy for CrankOutcome
impl Eq for CrankOutcome
impl StructuralPartialEq for CrankOutcome
Auto Trait Implementations§
impl Freeze for CrankOutcome
impl RefUnwindSafe for CrankOutcome
impl Send for CrankOutcome
impl Sync for CrankOutcome
impl Unpin for CrankOutcome
impl UnsafeUnpin for CrankOutcome
impl UnwindSafe for CrankOutcome
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