pub struct ExtractSpec {
pub tools: Option<ToolsExtract>,
pub final_text: Option<FieldPick>,
pub tokens: Option<TokensExtract>,
pub duration: Option<DurationExtract>,
}Expand description
The [transcript.extract] block: which of the four outputs to produce and
how. Validation requires at least one sub-table.
Fields§
§tools: Option<ToolsExtract>§final_text: Option<FieldPick>§tokens: Option<TokensExtract>§duration: Option<DurationExtract>Trait Implementations§
Source§impl Clone for ExtractSpec
impl Clone for ExtractSpec
Source§fn clone(&self) -> ExtractSpec
fn clone(&self) -> ExtractSpec
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 ExtractSpec
impl Debug for ExtractSpec
Source§impl<'de> Deserialize<'de> for ExtractSpec
impl<'de> Deserialize<'de> for ExtractSpec
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 ExtractSpec
impl RefUnwindSafe for ExtractSpec
impl Send for ExtractSpec
impl Sync for ExtractSpec
impl Unpin for ExtractSpec
impl UnsafeUnpin for ExtractSpec
impl UnwindSafe for ExtractSpec
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