pub enum SpeechPart {
Text(String),
Pause(f64),
}Variants§
Trait Implementations§
Source§impl Clone for SpeechPart
impl Clone for SpeechPart
Source§fn clone(&self) -> SpeechPart
fn clone(&self) -> SpeechPart
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 SpeechPart
impl Debug for SpeechPart
Source§impl PartialEq for SpeechPart
impl PartialEq for SpeechPart
impl StructuralPartialEq for SpeechPart
Auto Trait Implementations§
impl Freeze for SpeechPart
impl RefUnwindSafe for SpeechPart
impl Send for SpeechPart
impl Sync for SpeechPart
impl Unpin for SpeechPart
impl UnsafeUnpin for SpeechPart
impl UnwindSafe for SpeechPart
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