pub struct SsmlCapability {
pub element: String,
pub description: String,
pub attributes: Vec<String>,
pub speech_markdown_syntax: Vec<String>,
pub example: String,
}Fields§
§element: String§description: String§attributes: Vec<String>§speech_markdown_syntax: Vec<String>§example: StringTrait Implementations§
Source§impl Clone for SsmlCapability
impl Clone for SsmlCapability
Source§fn clone(&self) -> SsmlCapability
fn clone(&self) -> SsmlCapability
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 moreSource§impl Debug for SsmlCapability
impl Debug for SsmlCapability
Source§impl<'de> Deserialize<'de> for SsmlCapability
impl<'de> Deserialize<'de> for SsmlCapability
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 SsmlCapability
impl PartialEq for SsmlCapability
Source§fn eq(&self, other: &SsmlCapability) -> bool
fn eq(&self, other: &SsmlCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SsmlCapability
impl Serialize for SsmlCapability
impl StructuralPartialEq for SsmlCapability
Auto Trait Implementations§
impl Freeze for SsmlCapability
impl RefUnwindSafe for SsmlCapability
impl Send for SsmlCapability
impl Sync for SsmlCapability
impl Unpin for SsmlCapability
impl UnsafeUnpin for SsmlCapability
impl UnwindSafe for SsmlCapability
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