#[non_exhaustive]pub struct OrgPolicy {
pub name: String,
/* private fields */
}Expand description
Contains information about the org policies associated with the finding.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringIdentifier. The resource name of the org policy. Example: “organizations/{organization_id}/policies/{constraint_name}”
Implementations§
Trait Implementations§
impl StructuralPartialEq for OrgPolicy
Auto Trait Implementations§
impl Freeze for OrgPolicy
impl RefUnwindSafe for OrgPolicy
impl Send for OrgPolicy
impl Sync for OrgPolicy
impl Unpin for OrgPolicy
impl UnwindSafe for OrgPolicy
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