pub struct NodeSysCap {
pub node_id: Uuid,
pub capabilities: Vec<SysCap>,
pub collected_at: DateTime<Utc>,
}Expand description
System capability information for a node
Fields§
§node_id: Uuid§capabilities: Vec<SysCap>§collected_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for NodeSysCap
impl Clone for NodeSysCap
Source§fn clone(&self) -> NodeSysCap
fn clone(&self) -> NodeSysCap
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 NodeSysCap
impl Debug for NodeSysCap
Source§impl PartialEq for NodeSysCap
impl PartialEq for NodeSysCap
impl StructuralPartialEq for NodeSysCap
Auto Trait Implementations§
impl Freeze for NodeSysCap
impl RefUnwindSafe for NodeSysCap
impl Send for NodeSysCap
impl Sync for NodeSysCap
impl Unpin for NodeSysCap
impl UnwindSafe for NodeSysCap
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