#[non_exhaustive]pub struct CheckOnboardingStatusRequest {
pub parent: String,
/* private fields */
}Expand description
Request 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.parent: StringRequired. The resource for which the onboarding status should be checked. Should be in one of the following formats:
projects/{project-number|project-id}/locations/{region}folders/{folder-number}/locations/{region}organizations/{organization-number}/locations/{region}
Implementations§
Trait Implementations§
Source§impl Clone for CheckOnboardingStatusRequest
impl Clone for CheckOnboardingStatusRequest
Source§fn clone(&self) -> CheckOnboardingStatusRequest
fn clone(&self) -> CheckOnboardingStatusRequest
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 CheckOnboardingStatusRequest
impl Debug for CheckOnboardingStatusRequest
Source§impl Default for CheckOnboardingStatusRequest
impl Default for CheckOnboardingStatusRequest
Source§fn default() -> CheckOnboardingStatusRequest
fn default() -> CheckOnboardingStatusRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CheckOnboardingStatusRequest
impl PartialEq for CheckOnboardingStatusRequest
Source§fn eq(&self, other: &CheckOnboardingStatusRequest) -> bool
fn eq(&self, other: &CheckOnboardingStatusRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CheckOnboardingStatusRequest
Auto Trait Implementations§
impl Freeze for CheckOnboardingStatusRequest
impl RefUnwindSafe for CheckOnboardingStatusRequest
impl Send for CheckOnboardingStatusRequest
impl Sync for CheckOnboardingStatusRequest
impl Unpin for CheckOnboardingStatusRequest
impl UnsafeUnpin for CheckOnboardingStatusRequest
impl UnwindSafe for CheckOnboardingStatusRequest
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