pub struct WireEdgeGroupStatus {
pub state: WireEdgeGroupStatusState,
pub expected_edges: Vec<String>,
pub active_cause_id: Option<String>,
pub dirty: usize,
pub data: usize,
pub released: u64,
pub issues: u64,
pub last_issue: Option<WireEdgeGroupIssue>,
}Expand description
WireEdgeGroupStatus data container.
Fields§
§state: WireEdgeGroupStatusStatestate field for state.
expected_edges: Vec<String>expected_edges field for expected edges.
active_cause_id: Option<String>active_cause_id field for active cause id.
dirty: usizedirty field for dirty.
data: usizedata field for data.
released: u64released field for released.
issues: u64issues field for issues.
last_issue: Option<WireEdgeGroupIssue>last_issue field for last issue.
Trait Implementations§
Source§impl Clone for WireEdgeGroupStatus
impl Clone for WireEdgeGroupStatus
Source§fn clone(&self) -> WireEdgeGroupStatus
fn clone(&self) -> WireEdgeGroupStatus
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 WireEdgeGroupStatus
impl Debug for WireEdgeGroupStatus
Source§impl PartialEq for WireEdgeGroupStatus
impl PartialEq for WireEdgeGroupStatus
impl Eq for WireEdgeGroupStatus
impl StructuralPartialEq for WireEdgeGroupStatus
Auto Trait Implementations§
impl Freeze for WireEdgeGroupStatus
impl RefUnwindSafe for WireEdgeGroupStatus
impl Send for WireEdgeGroupStatus
impl Sync for WireEdgeGroupStatus
impl Unpin for WireEdgeGroupStatus
impl UnsafeUnpin for WireEdgeGroupStatus
impl UnwindSafe for WireEdgeGroupStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.