#[non_exhaustive]pub struct GetReferenceImageRequest {
pub name: String,
/* private fields */
}Expand description
Request message for the GetReferenceImage 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. The resource name of the ReferenceImage to get.
Format is:
projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID.
Implementations§
Trait Implementations§
Source§impl Clone for GetReferenceImageRequest
impl Clone for GetReferenceImageRequest
Source§fn clone(&self) -> GetReferenceImageRequest
fn clone(&self) -> GetReferenceImageRequest
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 GetReferenceImageRequest
impl Debug for GetReferenceImageRequest
Source§impl Default for GetReferenceImageRequest
impl Default for GetReferenceImageRequest
Source§fn default() -> GetReferenceImageRequest
fn default() -> GetReferenceImageRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetReferenceImageRequest
impl Message for GetReferenceImageRequest
Source§impl PartialEq for GetReferenceImageRequest
impl PartialEq for GetReferenceImageRequest
impl StructuralPartialEq for GetReferenceImageRequest
Auto Trait Implementations§
impl Freeze for GetReferenceImageRequest
impl RefUnwindSafe for GetReferenceImageRequest
impl Send for GetReferenceImageRequest
impl Sync for GetReferenceImageRequest
impl Unpin for GetReferenceImageRequest
impl UnwindSafe for GetReferenceImageRequest
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