pub struct DelegationSummary {
pub active: u64,
pub reaped: u64,
pub entries: Vec<DelegationInfo>,
pub killed: Vec<String>,
}Expand description
Delegated agent runs of the daemon’s SCV instance.
Fields§
§active: u64Running delegations, whichever SCV process of the instance started them.
reaped: u64Orphaned delegations the daemon has stopped since it started.
entries: Vec<DelegationInfo>Listed delegations, for delegations and delegation_kill.
killed: Vec<String>Handles this request stopped.
Trait Implementations§
Source§impl Clone for DelegationSummary
impl Clone for DelegationSummary
Source§impl Debug for DelegationSummary
impl Debug for DelegationSummary
Source§impl Default for DelegationSummary
impl Default for DelegationSummary
Source§impl<'de> Deserialize<'de> for DelegationSummary
impl<'de> Deserialize<'de> for DelegationSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DelegationSummary
Source§impl PartialEq for DelegationSummary
impl PartialEq for DelegationSummary
Source§impl Serialize for DelegationSummary
impl Serialize for DelegationSummary
impl StructuralPartialEq for DelegationSummary
Auto Trait Implementations§
impl Freeze for DelegationSummary
impl RefUnwindSafe for DelegationSummary
impl Send for DelegationSummary
impl Sync for DelegationSummary
impl Unpin for DelegationSummary
impl UnsafeUnpin for DelegationSummary
impl UnwindSafe for DelegationSummary
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