#[non_exhaustive]pub struct GetReferenceListRequest {
pub name: String,
pub view: ReferenceListView,
/* private fields */
}Expand description
A request to get details about a reference list.
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 reference list to retrieve.
Format:
projects/{project}/locations/{locations}/instances/{instance}/referenceLists/{reference_list}
view: ReferenceListViewHow much of the ReferenceList to view. Defaults to REFERENCE_LIST_VIEW_FULL.
Implementations§
Trait Implementations§
Source§impl Clone for GetReferenceListRequest
impl Clone for GetReferenceListRequest
Source§fn clone(&self) -> GetReferenceListRequest
fn clone(&self) -> GetReferenceListRequest
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 GetReferenceListRequest
impl Debug for GetReferenceListRequest
Source§impl Default for GetReferenceListRequest
impl Default for GetReferenceListRequest
Source§fn default() -> GetReferenceListRequest
fn default() -> GetReferenceListRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetReferenceListRequest
impl Message for GetReferenceListRequest
Source§impl PartialEq for GetReferenceListRequest
impl PartialEq for GetReferenceListRequest
Source§fn eq(&self, other: &GetReferenceListRequest) -> bool
fn eq(&self, other: &GetReferenceListRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetReferenceListRequest
Auto Trait Implementations§
impl Freeze for GetReferenceListRequest
impl RefUnwindSafe for GetReferenceListRequest
impl Send for GetReferenceListRequest
impl Sync for GetReferenceListRequest
impl Unpin for GetReferenceListRequest
impl UnsafeUnpin for GetReferenceListRequest
impl UnwindSafe for GetReferenceListRequest
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