pub struct TransformedSsml {
pub ssml_string: String,
pub synthesisable_text: String,
}
Expand description
After applying a transformation to SSML writes out the new SSML string and also the text to be processed by a speech synthesiser. Assumes all text in custom tags is synthesisable.
Fields§
§ssml_string: String
Generated SSML String after transformation
synthesisable_text: String
Synthesisable text after the transformation
Trait Implementations§
Source§impl Clone for TransformedSsml
impl Clone for TransformedSsml
Source§fn clone(&self) -> TransformedSsml
fn clone(&self) -> TransformedSsml
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for TransformedSsml
impl RefUnwindSafe for TransformedSsml
impl Send for TransformedSsml
impl Sync for TransformedSsml
impl Unpin for TransformedSsml
impl UnwindSafe for TransformedSsml
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