#[non_exhaustive]pub struct GetRuntimeProjectAttachmentRequest {
pub name: String,
/* private fields */
}Expand description
The GetRuntimeProjectAttachment method’s 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 name of the API resource to retrieve.
Format:
projects/{project}/locations/{location}/runtimeProjectAttachments/{runtime_project_attachment}
Implementations§
Trait Implementations§
Source§impl Clone for GetRuntimeProjectAttachmentRequest
impl Clone for GetRuntimeProjectAttachmentRequest
Source§fn clone(&self) -> GetRuntimeProjectAttachmentRequest
fn clone(&self) -> GetRuntimeProjectAttachmentRequest
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 Default for GetRuntimeProjectAttachmentRequest
impl Default for GetRuntimeProjectAttachmentRequest
Source§fn default() -> GetRuntimeProjectAttachmentRequest
fn default() -> GetRuntimeProjectAttachmentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetRuntimeProjectAttachmentRequest
impl PartialEq for GetRuntimeProjectAttachmentRequest
Source§fn eq(&self, other: &GetRuntimeProjectAttachmentRequest) -> bool
fn eq(&self, other: &GetRuntimeProjectAttachmentRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetRuntimeProjectAttachmentRequest
Auto Trait Implementations§
impl Freeze for GetRuntimeProjectAttachmentRequest
impl RefUnwindSafe for GetRuntimeProjectAttachmentRequest
impl Send for GetRuntimeProjectAttachmentRequest
impl Sync for GetRuntimeProjectAttachmentRequest
impl Unpin for GetRuntimeProjectAttachmentRequest
impl UnsafeUnpin for GetRuntimeProjectAttachmentRequest
impl UnwindSafe for GetRuntimeProjectAttachmentRequest
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