pub struct TranscriptCharContract {
pub character: String,
pub start_seconds: Option<f64>,
pub end_seconds: Option<f64>,
pub confidence: Option<f32>,
pub attributes: BTreeMap<String, String>,
}Fields§
§character: String§start_seconds: Option<f64>§end_seconds: Option<f64>§confidence: Option<f32>§attributes: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for TranscriptCharContract
impl Clone for TranscriptCharContract
Source§fn clone(&self) -> TranscriptCharContract
fn clone(&self) -> TranscriptCharContract
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 TranscriptCharContract
impl Debug for TranscriptCharContract
Source§impl<'de> Deserialize<'de> for TranscriptCharContract
impl<'de> Deserialize<'de> for TranscriptCharContract
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
Source§impl PartialEq for TranscriptCharContract
impl PartialEq for TranscriptCharContract
Source§fn eq(&self, other: &TranscriptCharContract) -> bool
fn eq(&self, other: &TranscriptCharContract) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TranscriptCharContract
impl Serialize for TranscriptCharContract
impl StructuralPartialEq for TranscriptCharContract
Auto Trait Implementations§
impl Freeze for TranscriptCharContract
impl RefUnwindSafe for TranscriptCharContract
impl Send for TranscriptCharContract
impl Sync for TranscriptCharContract
impl Unpin for TranscriptCharContract
impl UnsafeUnpin for TranscriptCharContract
impl UnwindSafe for TranscriptCharContract
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