pub enum ProsodyPitch {
Lower,
Low,
Medium,
Default,
High,
Higher,
Semitone(f32),
Hz(f32),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ProsodyPitch
impl Clone for ProsodyPitch
Source§fn clone(&self) -> ProsodyPitch
fn clone(&self) -> ProsodyPitch
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 ProsodyPitch
Source§impl Debug for ProsodyPitch
impl Debug for ProsodyPitch
Source§impl Default for ProsodyPitch
impl Default for ProsodyPitch
Source§fn default() -> ProsodyPitch
fn default() -> ProsodyPitch
Returns the “default value” for a type. Read more
Source§impl Display for ProsodyPitch
impl Display for ProsodyPitch
Source§impl From<ProsodyPitch> for ProsodyControl
impl From<ProsodyPitch> for ProsodyControl
Source§fn from(pitch: ProsodyPitch) -> Self
fn from(pitch: ProsodyPitch) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProsodyPitch
impl PartialEq for ProsodyPitch
impl StructuralPartialEq for ProsodyPitch
Auto Trait Implementations§
impl Freeze for ProsodyPitch
impl RefUnwindSafe for ProsodyPitch
impl Send for ProsodyPitch
impl Sync for ProsodyPitch
impl Unpin for ProsodyPitch
impl UnsafeUnpin for ProsodyPitch
impl UnwindSafe for ProsodyPitch
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