#[non_exhaustive]pub struct AttachTrustRequest {
pub name: String,
pub trust: Option<Trust>,
/* private fields */
}Expand description
Request message for [AttachTrust][google.cloud.managedidentities.v1.AttachTrust]
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 resource.
Implementations§
Trait Implementations§
Source§impl Clone for AttachTrustRequest
impl Clone for AttachTrustRequest
Source§fn clone(&self) -> AttachTrustRequest
fn clone(&self) -> AttachTrustRequest
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 AttachTrustRequest
impl Debug for AttachTrustRequest
Source§impl Default for AttachTrustRequest
impl Default for AttachTrustRequest
Source§fn default() -> AttachTrustRequest
fn default() -> AttachTrustRequest
Returns the “default value” for a type. Read more
Source§impl Message for AttachTrustRequest
impl Message for AttachTrustRequest
Source§impl PartialEq for AttachTrustRequest
impl PartialEq for AttachTrustRequest
impl StructuralPartialEq for AttachTrustRequest
Auto Trait Implementations§
impl Freeze for AttachTrustRequest
impl RefUnwindSafe for AttachTrustRequest
impl Send for AttachTrustRequest
impl Sync for AttachTrustRequest
impl Unpin for AttachTrustRequest
impl UnsafeUnpin for AttachTrustRequest
impl UnwindSafe for AttachTrustRequest
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