pub enum NodesUsageParts<'b> {
None,
NodeId(&'b [&'b str]),
Metric(&'b [&'b str]),
NodeIdMetric(&'b [&'b str], &'b [&'b str]),
}
Expand description
API parts for the Nodes Usage API
Variants§
None
No parts
NodeId(&'b [&'b str])
NodeId
Metric(&'b [&'b str])
Metric
NodeIdMetric(&'b [&'b str], &'b [&'b str])
NodeId and Metric
Implementations§
Trait Implementations§
Source§impl<'b> Clone for NodesUsageParts<'b>
impl<'b> Clone for NodesUsageParts<'b>
Source§fn clone(&self) -> NodesUsageParts<'b>
fn clone(&self) -> NodesUsageParts<'b>
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<'b> Debug for NodesUsageParts<'b>
impl<'b> Debug for NodesUsageParts<'b>
Source§impl<'b> PartialEq for NodesUsageParts<'b>
impl<'b> PartialEq for NodesUsageParts<'b>
impl<'b> StructuralPartialEq for NodesUsageParts<'b>
Auto Trait Implementations§
impl<'b> Freeze for NodesUsageParts<'b>
impl<'b> RefUnwindSafe for NodesUsageParts<'b>
impl<'b> Send for NodesUsageParts<'b>
impl<'b> Sync for NodesUsageParts<'b>
impl<'b> Unpin for NodesUsageParts<'b>
impl<'b> UnwindSafe for NodesUsageParts<'b>
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