#[non_exhaustive]pub struct GetAttributesConfigRequest {
pub name: String,
/* private fields */
}Expand description
Request for CatalogService.GetAttributesConfig 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. Full AttributesConfig resource name. Format:
projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/attributesConfig
Implementations§
Trait Implementations§
Source§impl Clone for GetAttributesConfigRequest
impl Clone for GetAttributesConfigRequest
Source§fn clone(&self) -> GetAttributesConfigRequest
fn clone(&self) -> GetAttributesConfigRequest
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 GetAttributesConfigRequest
impl Debug for GetAttributesConfigRequest
Source§impl Default for GetAttributesConfigRequest
impl Default for GetAttributesConfigRequest
Source§fn default() -> GetAttributesConfigRequest
fn default() -> GetAttributesConfigRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetAttributesConfigRequest
impl Message for GetAttributesConfigRequest
impl StructuralPartialEq for GetAttributesConfigRequest
Auto Trait Implementations§
impl Freeze for GetAttributesConfigRequest
impl RefUnwindSafe for GetAttributesConfigRequest
impl Send for GetAttributesConfigRequest
impl Sync for GetAttributesConfigRequest
impl Unpin for GetAttributesConfigRequest
impl UnsafeUnpin for GetAttributesConfigRequest
impl UnwindSafe for GetAttributesConfigRequest
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