#[non_exhaustive]pub struct ValidateTrustRequest {
pub name: String,
pub trust: Option<Trust>,
/* private fields */
}Expand description
Request message for [ValidateTrust][google.cloud.managedidentities.v1.ValidateTrust]
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: StringRequired. The resource domain name, project name, and location using the form:
projects/{project_id}/locations/global/domains/{domain_name}
trust: Option<Trust>Required. The domain trust to validate trust state for.
Implementations§
Trait Implementations§
Source§impl Clone for ValidateTrustRequest
impl Clone for ValidateTrustRequest
Source§fn clone(&self) -> ValidateTrustRequest
fn clone(&self) -> ValidateTrustRequest
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 ValidateTrustRequest
impl Debug for ValidateTrustRequest
Source§impl Default for ValidateTrustRequest
impl Default for ValidateTrustRequest
Source§fn default() -> ValidateTrustRequest
fn default() -> ValidateTrustRequest
Returns the “default value” for a type. Read more
Source§impl Message for ValidateTrustRequest
impl Message for ValidateTrustRequest
Source§impl PartialEq for ValidateTrustRequest
impl PartialEq for ValidateTrustRequest
impl StructuralPartialEq for ValidateTrustRequest
Auto Trait Implementations§
impl Freeze for ValidateTrustRequest
impl RefUnwindSafe for ValidateTrustRequest
impl Send for ValidateTrustRequest
impl Sync for ValidateTrustRequest
impl Unpin for ValidateTrustRequest
impl UnsafeUnpin for ValidateTrustRequest
impl UnwindSafe for ValidateTrustRequest
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