pub enum RealtimeResponseCreateParamsConversation {
Other(String),
Auto,
None,
}
Expand description
Controls which conversation the response is added to. Currently supports
auto
and none
, with auto
as the default value. The auto
value
means that the contents of the response will be added to the default
conversation. Set this to none
to create an out-of-band response which
will not add items to default conversation.
Variants§
Trait Implementations§
Source§impl Clone for RealtimeResponseCreateParamsConversation
impl Clone for RealtimeResponseCreateParamsConversation
Source§fn clone(&self) -> RealtimeResponseCreateParamsConversation
fn clone(&self) -> RealtimeResponseCreateParamsConversation
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<'de> Deserialize<'de> for RealtimeResponseCreateParamsConversation
impl<'de> Deserialize<'de> for RealtimeResponseCreateParamsConversation
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RealtimeResponseCreateParamsConversation
impl PartialEq for RealtimeResponseCreateParamsConversation
Source§fn eq(&self, other: &RealtimeResponseCreateParamsConversation) -> bool
fn eq(&self, other: &RealtimeResponseCreateParamsConversation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RealtimeResponseCreateParamsConversation
Auto Trait Implementations§
impl Freeze for RealtimeResponseCreateParamsConversation
impl RefUnwindSafe for RealtimeResponseCreateParamsConversation
impl Send for RealtimeResponseCreateParamsConversation
impl Sync for RealtimeResponseCreateParamsConversation
impl Unpin for RealtimeResponseCreateParamsConversation
impl UnwindSafe for RealtimeResponseCreateParamsConversation
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