pub struct Mora {
pub consonant: Option<String>,
pub consonant_length: Option<f64>,
pub pitch: f64,
pub text: String,
pub vowel: String,
pub vowel_length: f64,
}Expand description
json object inner Phrase
Fields§
§consonant: Option<String>consonant (allow null)
consonant_length: Option<f64>consonant_length (allow null)
pitch: f64pitch
text: Stringtext
vowel: Stringvowel
vowel_length: f64vowel_length
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Mora
impl<'de> Deserialize<'de> for Mora
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
Auto Trait Implementations§
impl Freeze for Mora
impl RefUnwindSafe for Mora
impl Send for Mora
impl Sync for Mora
impl Unpin for Mora
impl UnwindSafe for Mora
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