#[non_exhaustive]pub struct GetRecognizerRequest {
pub name: String,
/* private fields */
}Expand description
Request message for the GetRecognizer 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 name of the Recognizer to retrieve. The expected format is
projects/{project}/locations/{location}/recognizers/{recognizer}.
Implementations§
Trait Implementations§
Source§impl Clone for GetRecognizerRequest
impl Clone for GetRecognizerRequest
Source§fn clone(&self) -> GetRecognizerRequest
fn clone(&self) -> GetRecognizerRequest
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 GetRecognizerRequest
impl Debug for GetRecognizerRequest
Source§impl Default for GetRecognizerRequest
impl Default for GetRecognizerRequest
Source§fn default() -> GetRecognizerRequest
fn default() -> GetRecognizerRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetRecognizerRequest
impl Message for GetRecognizerRequest
Source§impl PartialEq for GetRecognizerRequest
impl PartialEq for GetRecognizerRequest
impl StructuralPartialEq for GetRecognizerRequest
Auto Trait Implementations§
impl Freeze for GetRecognizerRequest
impl RefUnwindSafe for GetRecognizerRequest
impl Send for GetRecognizerRequest
impl Sync for GetRecognizerRequest
impl Unpin for GetRecognizerRequest
impl UnwindSafe for GetRecognizerRequest
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