pub enum CreateAssistantDtoBackgroundSound {
Enum(BackgroundSoundChoice),
Url(String),
}
Expand description
CreateAssistantDtoBackgroundSound : This is the background sound in the call. Default for phone calls is ‘office’ and default for web calls is ‘off’. You can also provide a custom sound by providing a URL to an audio file. This is the background sound in the call. Default for phone calls is ‘office’ and default for web calls is ‘off’. You can also provide a custom sound by providing a URL to an audio file.
Variants§
Enum(BackgroundSoundChoice)
Url(String)
Trait Implementations§
Source§impl Clone for CreateAssistantDtoBackgroundSound
impl Clone for CreateAssistantDtoBackgroundSound
Source§fn clone(&self) -> CreateAssistantDtoBackgroundSound
fn clone(&self) -> CreateAssistantDtoBackgroundSound
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for CreateAssistantDtoBackgroundSound
impl<'de> Deserialize<'de> for CreateAssistantDtoBackgroundSound
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 CreateAssistantDtoBackgroundSound
impl PartialEq for CreateAssistantDtoBackgroundSound
Source§fn eq(&self, other: &CreateAssistantDtoBackgroundSound) -> bool
fn eq(&self, other: &CreateAssistantDtoBackgroundSound) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateAssistantDtoBackgroundSound
Auto Trait Implementations§
impl Freeze for CreateAssistantDtoBackgroundSound
impl RefUnwindSafe for CreateAssistantDtoBackgroundSound
impl Send for CreateAssistantDtoBackgroundSound
impl Sync for CreateAssistantDtoBackgroundSound
impl Unpin for CreateAssistantDtoBackgroundSound
impl UnwindSafe for CreateAssistantDtoBackgroundSound
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