#[non_exhaustive]pub struct GetAspectTypeRequest {
pub name: String,
/* private fields */
}Expand description
Get AspectType request.
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 name of the AspectType:
projects/{project_number}/locations/{location_id}/aspectTypes/{aspect_type_id}.
Implementations§
Trait Implementations§
Source§impl Clone for GetAspectTypeRequest
impl Clone for GetAspectTypeRequest
Source§fn clone(&self) -> GetAspectTypeRequest
fn clone(&self) -> GetAspectTypeRequest
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 GetAspectTypeRequest
impl Debug for GetAspectTypeRequest
Source§impl Default for GetAspectTypeRequest
impl Default for GetAspectTypeRequest
Source§fn default() -> GetAspectTypeRequest
fn default() -> GetAspectTypeRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetAspectTypeRequest
impl Message for GetAspectTypeRequest
Source§impl PartialEq for GetAspectTypeRequest
impl PartialEq for GetAspectTypeRequest
impl StructuralPartialEq for GetAspectTypeRequest
Auto Trait Implementations§
impl Freeze for GetAspectTypeRequest
impl RefUnwindSafe for GetAspectTypeRequest
impl Send for GetAspectTypeRequest
impl Sync for GetAspectTypeRequest
impl Unpin for GetAspectTypeRequest
impl UnwindSafe for GetAspectTypeRequest
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