#[non_exhaustive]pub struct GetDataObjectRequest {
pub name: String,
/* private fields */
}Expand description
Request message for DataObjectService.GetDataObject.
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 DataObject resource.
Format:
projects/{project}/locations/{location}/collections/{collection}/dataObjects/{dataObject}
Implementations§
Trait Implementations§
Source§impl Clone for GetDataObjectRequest
impl Clone for GetDataObjectRequest
Source§fn clone(&self) -> GetDataObjectRequest
fn clone(&self) -> GetDataObjectRequest
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 GetDataObjectRequest
impl Debug for GetDataObjectRequest
Source§impl Default for GetDataObjectRequest
impl Default for GetDataObjectRequest
Source§fn default() -> GetDataObjectRequest
fn default() -> GetDataObjectRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetDataObjectRequest
impl Message for GetDataObjectRequest
Source§impl PartialEq for GetDataObjectRequest
impl PartialEq for GetDataObjectRequest
impl StructuralPartialEq for GetDataObjectRequest
Auto Trait Implementations§
impl Freeze for GetDataObjectRequest
impl RefUnwindSafe for GetDataObjectRequest
impl Send for GetDataObjectRequest
impl Sync for GetDataObjectRequest
impl Unpin for GetDataObjectRequest
impl UnsafeUnpin for GetDataObjectRequest
impl UnwindSafe for GetDataObjectRequest
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