pub enum MessageTone {
Beep,
None,
}Expand description
The cue a message node plays between its prompt and the start of recording.
JSON schema
{
"description": "The cue a message node plays between its prompt and the start of recording.",
"type": "string",
"enum": [
"beep",
"none"
]
}Variants§
Trait Implementations§
Source§impl Clone for MessageTone
impl Clone for MessageTone
Source§fn clone(&self) -> MessageTone
fn clone(&self) -> MessageTone
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MessageTone
Source§impl Debug for MessageTone
impl Debug for MessageTone
Source§impl<'de> Deserialize<'de> for MessageTone
impl<'de> Deserialize<'de> for MessageTone
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 Display for MessageTone
impl Display for MessageTone
impl Eq for MessageTone
Source§impl From<&MessageTone> for MessageTone
impl From<&MessageTone> for MessageTone
Source§fn from(value: &MessageTone) -> Self
fn from(value: &MessageTone) -> Self
Converts to this type from the input type.
Source§impl FromStr for MessageTone
impl FromStr for MessageTone
Source§impl Hash for MessageTone
impl Hash for MessageTone
Source§impl Ord for MessageTone
impl Ord for MessageTone
Source§fn cmp(&self, other: &MessageTone) -> Ordering
fn cmp(&self, other: &MessageTone) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MessageTone
impl PartialEq for MessageTone
Source§impl PartialOrd for MessageTone
impl PartialOrd for MessageTone
Source§impl Serialize for MessageTone
impl Serialize for MessageTone
impl StructuralPartialEq for MessageTone
Source§impl TryFrom<&String> for MessageTone
impl TryFrom<&String> for MessageTone
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for MessageTone
impl TryFrom<&str> for MessageTone
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for MessageTone
impl TryFrom<String> for MessageTone
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for MessageTone
impl RefUnwindSafe for MessageTone
impl Send for MessageTone
impl Sync for MessageTone
impl Unpin for MessageTone
impl UnsafeUnpin for MessageTone
impl UnwindSafe for MessageTone
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.