pub struct TranscriptionEntry {
pub role: Option<String>,
pub data: Blob,
}Expand description
Store the data that can be used for transcription.
Fields§
§role: Option<String>The role that created this data, typically “user” or “model”. For function call, this is undefined.
data: BlobTrait Implementations§
Source§impl Clone for TranscriptionEntry
impl Clone for TranscriptionEntry
Source§fn clone(&self) -> TranscriptionEntry
fn clone(&self) -> TranscriptionEntry
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 moreAuto Trait Implementations§
impl Freeze for TranscriptionEntry
impl RefUnwindSafe for TranscriptionEntry
impl Send for TranscriptionEntry
impl Sync for TranscriptionEntry
impl Unpin for TranscriptionEntry
impl UnwindSafe for TranscriptionEntry
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