#[non_exhaustive]pub struct GetSACAttachmentRequest {
pub name: String,
/* private fields */
}Expand description
Request for GetSACAttachment method.
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. Name of the resource, in the form
projects/{project}/locations/{location}/sacAttachments/{sac_attachment}.
Implementations§
Trait Implementations§
Source§impl Clone for GetSACAttachmentRequest
impl Clone for GetSACAttachmentRequest
Source§fn clone(&self) -> GetSACAttachmentRequest
fn clone(&self) -> GetSACAttachmentRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetSACAttachmentRequest
impl Debug for GetSACAttachmentRequest
Source§impl Default for GetSACAttachmentRequest
impl Default for GetSACAttachmentRequest
Source§fn default() -> GetSACAttachmentRequest
fn default() -> GetSACAttachmentRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetSACAttachmentRequest
impl Message for GetSACAttachmentRequest
Source§impl PartialEq for GetSACAttachmentRequest
impl PartialEq for GetSACAttachmentRequest
Source§fn eq(&self, other: &GetSACAttachmentRequest) -> bool
fn eq(&self, other: &GetSACAttachmentRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetSACAttachmentRequest
Auto Trait Implementations§
impl Freeze for GetSACAttachmentRequest
impl RefUnwindSafe for GetSACAttachmentRequest
impl Send for GetSACAttachmentRequest
impl Sync for GetSACAttachmentRequest
impl Unpin for GetSACAttachmentRequest
impl UnsafeUnpin for GetSACAttachmentRequest
impl UnwindSafe for GetSACAttachmentRequest
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