pub struct HubStatusEntry {
pub count: Option<i32>,
pub group_by: Option<String>,
pub psc_propagation_status: Option<PscPropagationStatus>,
}Expand description
A hub status entry represents the status of a set of propagated Private Service Connect connections grouped by certain fields.
This type is not used in any activity, and only used as part of another schema.
Fields§
§count: Option<i32>The number of propagated Private Service Connect connections with this status. If the group_by field was not set in the request message, the value of this field is 1.
group_by: Option<String>The fields that this entry is grouped by. This has the same value as the group_by field in the request message.
psc_propagation_status: Option<PscPropagationStatus>The Private Service Connect propagation status.
Trait Implementations§
Source§impl Clone for HubStatusEntry
impl Clone for HubStatusEntry
Source§fn clone(&self) -> HubStatusEntry
fn clone(&self) -> HubStatusEntry
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 HubStatusEntry
impl Debug for HubStatusEntry
Source§impl Default for HubStatusEntry
impl Default for HubStatusEntry
Source§fn default() -> HubStatusEntry
fn default() -> HubStatusEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HubStatusEntry
impl<'de> Deserialize<'de> for HubStatusEntry
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 HubStatusEntry
impl Serialize for HubStatusEntry
impl Part for HubStatusEntry
Auto Trait Implementations§
impl Freeze for HubStatusEntry
impl RefUnwindSafe for HubStatusEntry
impl Send for HubStatusEntry
impl Sync for HubStatusEntry
impl Unpin for HubStatusEntry
impl UnwindSafe for HubStatusEntry
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