pub struct SpokeTypeCount {
pub count: Option<i64>,
pub spoke_type: Option<String>,
}Expand description
The number of spokes of a given type that are associated with a specific hub. The type indicates what kind of resource is associated with the spoke.
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 of this type that are associated with the hub.
spoke_type: Option<String>Output only. The type of the spokes.
Trait Implementations§
Source§impl Clone for SpokeTypeCount
impl Clone for SpokeTypeCount
Source§fn clone(&self) -> SpokeTypeCount
fn clone(&self) -> SpokeTypeCount
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 SpokeTypeCount
impl Debug for SpokeTypeCount
Source§impl Default for SpokeTypeCount
impl Default for SpokeTypeCount
Source§fn default() -> SpokeTypeCount
fn default() -> SpokeTypeCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SpokeTypeCount
impl<'de> Deserialize<'de> for SpokeTypeCount
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 SpokeTypeCount
impl Serialize for SpokeTypeCount
impl Part for SpokeTypeCount
Auto Trait Implementations§
impl Freeze for SpokeTypeCount
impl RefUnwindSafe for SpokeTypeCount
impl Send for SpokeTypeCount
impl Sync for SpokeTypeCount
impl Unpin for SpokeTypeCount
impl UnwindSafe for SpokeTypeCount
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