pub struct FormatterOptions {
pub platform: Platform,
pub include_speak_tag: bool,
pub include_paragraph_tag: bool,
pub preserve_empty_lines: bool,
pub escape_xml_symbols: bool,
pub include_formatter_comment: bool,
pub voices: Option<HashMap<String, VoiceMapping>>,
}Expand description
Options for formatters
Fields§
§platform: Platform§include_speak_tag: bool§include_paragraph_tag: bool§preserve_empty_lines: bool§escape_xml_symbols: bool§include_formatter_comment: bool§voices: Option<HashMap<String, VoiceMapping>>Trait Implementations§
Source§impl Clone for FormatterOptions
impl Clone for FormatterOptions
Source§fn clone(&self) -> FormatterOptions
fn clone(&self) -> FormatterOptions
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 FormatterOptions
impl Debug for FormatterOptions
Auto Trait Implementations§
impl Freeze for FormatterOptions
impl RefUnwindSafe for FormatterOptions
impl Send for FormatterOptions
impl Sync for FormatterOptions
impl Unpin for FormatterOptions
impl UnsafeUnpin for FormatterOptions
impl UnwindSafe for FormatterOptions
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