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