pub struct AlignResponse {
pub segments: Vec<AlignmentSegment>,
pub alignment: Vec<AlignedWord>,
pub model: String,
pub cost_ticks: i64,
pub request_id: String,
}Expand description
Response from audio alignment.
Fields§
§segments: Vec<AlignmentSegment>Aligned segments.
alignment: Vec<AlignedWord>Word-level alignment.
model: StringModel used.
cost_ticks: i64Total cost in ticks.
request_id: StringUnique request identifier.
Trait Implementations§
Source§impl Clone for AlignResponse
impl Clone for AlignResponse
Source§fn clone(&self) -> AlignResponse
fn clone(&self) -> AlignResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 AlignResponse
impl Debug for AlignResponse
Source§impl<'de> Deserialize<'de> for AlignResponse
impl<'de> Deserialize<'de> for AlignResponse
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 AlignResponse
impl RefUnwindSafe for AlignResponse
impl Send for AlignResponse
impl Sync for AlignResponse
impl Unpin for AlignResponse
impl UnsafeUnpin for AlignResponse
impl UnwindSafe for AlignResponse
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