pub struct SpokeStateCount {
pub count: Option<i64>,
pub state: Option<String>,
}Expand description
The number of spokes that are in a particular state and associated with a given hub.
This type is not used in any activity, and only used as part of another schema.
Fields§
§count: Option<i64>Output only. The total number of spokes that are in this state and associated with a given hub.
state: Option<String>Output only. The state of the spokes.
Trait Implementations§
Source§impl Clone for SpokeStateCount
impl Clone for SpokeStateCount
Source§fn clone(&self) -> SpokeStateCount
fn clone(&self) -> SpokeStateCount
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 SpokeStateCount
impl Debug for SpokeStateCount
Source§impl Default for SpokeStateCount
impl Default for SpokeStateCount
Source§fn default() -> SpokeStateCount
fn default() -> SpokeStateCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SpokeStateCount
impl<'de> Deserialize<'de> for SpokeStateCount
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
Source§impl Serialize for SpokeStateCount
impl Serialize for SpokeStateCount
impl Part for SpokeStateCount
Auto Trait Implementations§
impl Freeze for SpokeStateCount
impl RefUnwindSafe for SpokeStateCount
impl Send for SpokeStateCount
impl Sync for SpokeStateCount
impl Unpin for SpokeStateCount
impl UnwindSafe for SpokeStateCount
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