#[non_exhaustive]pub struct CheckOnboardingStatusResponse {
pub service_account: String,
pub findings: Vec<Finding>,
/* private fields */
}Expand description
Response message for CheckOnboardingStatus method.
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.service_account: StringThe service account that PAM uses to act on this resource.
findings: Vec<Finding>List of issues that are preventing PAM from functioning for this resource and need to be fixed to complete onboarding. Some issues might not be detected or reported.
Implementations§
Source§impl CheckOnboardingStatusResponse
impl CheckOnboardingStatusResponse
Sourcepub fn set_service_account<T: Into<String>>(self, v: T) -> Self
pub fn set_service_account<T: Into<String>>(self, v: T) -> Self
Sets the value of service_account.
§Example
ⓘ
let x = CheckOnboardingStatusResponse::new().set_service_account("example");Sourcepub fn set_findings<T, V>(self, v: T) -> Self
pub fn set_findings<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for CheckOnboardingStatusResponse
impl Clone for CheckOnboardingStatusResponse
Source§fn clone(&self) -> CheckOnboardingStatusResponse
fn clone(&self) -> CheckOnboardingStatusResponse
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 CheckOnboardingStatusResponse
impl Default for CheckOnboardingStatusResponse
Source§fn default() -> CheckOnboardingStatusResponse
fn default() -> CheckOnboardingStatusResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for CheckOnboardingStatusResponse
impl PartialEq for CheckOnboardingStatusResponse
Source§fn eq(&self, other: &CheckOnboardingStatusResponse) -> bool
fn eq(&self, other: &CheckOnboardingStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CheckOnboardingStatusResponse
Auto Trait Implementations§
impl Freeze for CheckOnboardingStatusResponse
impl RefUnwindSafe for CheckOnboardingStatusResponse
impl Send for CheckOnboardingStatusResponse
impl Sync for CheckOnboardingStatusResponse
impl Unpin for CheckOnboardingStatusResponse
impl UnsafeUnpin for CheckOnboardingStatusResponse
impl UnwindSafe for CheckOnboardingStatusResponse
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