#[non_exhaustive]pub struct ImageQuery {
pub image: Option<Image>,
/* private fields */
}Available on crate features
assistant-service or conversational-search-service or search-service or serving-config-service only.Expand description
Specifies the image query input.
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.image: Option<Image>Implementations§
Trait Implementations§
Source§impl Clone for ImageQuery
impl Clone for ImageQuery
Source§fn clone(&self) -> ImageQuery
fn clone(&self) -> ImageQuery
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 ImageQuery
impl Debug for ImageQuery
Source§impl Default for ImageQuery
impl Default for ImageQuery
Source§fn default() -> ImageQuery
fn default() -> ImageQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImageQuery
impl PartialEq for ImageQuery
impl StructuralPartialEq for ImageQuery
Auto Trait Implementations§
impl Freeze for ImageQuery
impl RefUnwindSafe for ImageQuery
impl Send for ImageQuery
impl Sync for ImageQuery
impl Unpin for ImageQuery
impl UnwindSafe for ImageQuery
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