pub struct AssociatedEntities {
pub anthos_clusters: Option<Vec<AnthosCluster>>,
pub gke_clusters: Option<Vec<GkeCluster>>,
}Expand description
Information about entities associated with a Target.
This type is not used in any activity, and only used as part of another schema.
Fields§
§anthos_clusters: Option<Vec<AnthosCluster>>Optional. Information specifying Anthos clusters as associated entities.
gke_clusters: Option<Vec<GkeCluster>>Optional. Information specifying GKE clusters as associated entities.
Trait Implementations§
Source§impl Clone for AssociatedEntities
impl Clone for AssociatedEntities
Source§fn clone(&self) -> AssociatedEntities
fn clone(&self) -> AssociatedEntities
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 AssociatedEntities
impl Debug for AssociatedEntities
Source§impl Default for AssociatedEntities
impl Default for AssociatedEntities
Source§fn default() -> AssociatedEntities
fn default() -> AssociatedEntities
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssociatedEntities
impl<'de> Deserialize<'de> for AssociatedEntities
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 AssociatedEntities
impl Serialize for AssociatedEntities
impl Part for AssociatedEntities
Auto Trait Implementations§
impl Freeze for AssociatedEntities
impl RefUnwindSafe for AssociatedEntities
impl Send for AssociatedEntities
impl Sync for AssociatedEntities
impl Unpin for AssociatedEntities
impl UnwindSafe for AssociatedEntities
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