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