pub struct GoogleCloudAssetV1IdentityList {
pub group_edges: Option<Vec<GoogleCloudAssetV1Edge>>,
pub identities: Option<Vec<GoogleCloudAssetV1Identity>>,
}Expand description
The identities and group edges.
This type is not used in any activity, and only used as part of another schema.
Fields§
§group_edges: Option<Vec<GoogleCloudAssetV1Edge>>Group identity edges of the graph starting from the binding’s group members to any node of the identities. The Edge.source_node contains a group, such as group:parent@google.com. The Edge.target_node contains a member of the group, such as group:child@google.com or user:foo@google.com. This field is present only if the output_group_edges option is enabled in request.
identities: Option<Vec<GoogleCloudAssetV1Identity>>Only the identities that match one of the following conditions will be presented: - The identity_selector, if it is specified in request; - Otherwise, identities reachable from the policy binding’s members.
Trait Implementations§
Source§impl Clone for GoogleCloudAssetV1IdentityList
impl Clone for GoogleCloudAssetV1IdentityList
Source§fn clone(&self) -> GoogleCloudAssetV1IdentityList
fn clone(&self) -> GoogleCloudAssetV1IdentityList
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 Default for GoogleCloudAssetV1IdentityList
impl Default for GoogleCloudAssetV1IdentityList
Source§fn default() -> GoogleCloudAssetV1IdentityList
fn default() -> GoogleCloudAssetV1IdentityList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudAssetV1IdentityList
impl<'de> Deserialize<'de> for GoogleCloudAssetV1IdentityList
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
impl Part for GoogleCloudAssetV1IdentityList
Auto Trait Implementations§
impl Freeze for GoogleCloudAssetV1IdentityList
impl RefUnwindSafe for GoogleCloudAssetV1IdentityList
impl Send for GoogleCloudAssetV1IdentityList
impl Sync for GoogleCloudAssetV1IdentityList
impl Unpin for GoogleCloudAssetV1IdentityList
impl UnwindSafe for GoogleCloudAssetV1IdentityList
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