#[non_exhaustive]pub struct GetParticipantRequest {
pub name: String,
/* private fields */
}Available on crate feature
participants only.Expand description
The request message for Participants.GetParticipant.
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 participant. Format:
projects/<Project ID>/locations/<Location ID>/conversations/<Conversation ID>/participants/<Participant ID>.
Implementations§
Trait Implementations§
Source§impl Clone for GetParticipantRequest
impl Clone for GetParticipantRequest
Source§fn clone(&self) -> GetParticipantRequest
fn clone(&self) -> GetParticipantRequest
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 GetParticipantRequest
impl Debug for GetParticipantRequest
Source§impl Default for GetParticipantRequest
impl Default for GetParticipantRequest
Source§fn default() -> GetParticipantRequest
fn default() -> GetParticipantRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetParticipantRequest
impl Message for GetParticipantRequest
Source§impl PartialEq for GetParticipantRequest
impl PartialEq for GetParticipantRequest
impl StructuralPartialEq for GetParticipantRequest
Auto Trait Implementations§
impl Freeze for GetParticipantRequest
impl RefUnwindSafe for GetParticipantRequest
impl Send for GetParticipantRequest
impl Sync for GetParticipantRequest
impl Unpin for GetParticipantRequest
impl UnwindSafe for GetParticipantRequest
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