pub struct AlignRequest {
pub audio_base64: String,
pub text: String,
pub language: Option<String>,
}Expand description
Request body for audio alignment / forced alignment.
Fields§
§audio_base64: StringBase64-encoded audio data.
text: StringTranscript text to align against the audio.
language: Option<String>Language code.
Trait Implementations§
Source§impl Clone for AlignRequest
impl Clone for AlignRequest
Source§fn clone(&self) -> AlignRequest
fn clone(&self) -> AlignRequest
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 AlignRequest
impl Debug for AlignRequest
Source§impl Default for AlignRequest
impl Default for AlignRequest
Source§fn default() -> AlignRequest
fn default() -> AlignRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AlignRequest
impl RefUnwindSafe for AlignRequest
impl Send for AlignRequest
impl Sync for AlignRequest
impl Unpin for AlignRequest
impl UnsafeUnpin for AlignRequest
impl UnwindSafe for AlignRequest
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