#[non_exhaustive]pub struct NmstateStatistic {
pub topology: Vec<String>,
pub features: Vec<NmstateFeature>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.topology: Vec<String>§features: Vec<NmstateFeature>Trait Implementations§
Source§impl Clone for NmstateStatistic
impl Clone for NmstateStatistic
Source§fn clone(&self) -> NmstateStatistic
fn clone(&self) -> NmstateStatistic
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 NmstateStatistic
impl Debug for NmstateStatistic
Source§impl Default for NmstateStatistic
impl Default for NmstateStatistic
Source§fn default() -> NmstateStatistic
fn default() -> NmstateStatistic
Returns the “default value” for a type. Read more
Source§impl PartialEq for NmstateStatistic
impl PartialEq for NmstateStatistic
Source§impl Serialize for NmstateStatistic
impl Serialize for NmstateStatistic
impl Eq for NmstateStatistic
impl StructuralPartialEq for NmstateStatistic
Auto Trait Implementations§
impl Freeze for NmstateStatistic
impl RefUnwindSafe for NmstateStatistic
impl Send for NmstateStatistic
impl Sync for NmstateStatistic
impl Unpin for NmstateStatistic
impl UnwindSafe for NmstateStatistic
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.