pub struct Transcript {
pub transcripts: Vec<TranscriptCore>,
}
Expand description
Struct containing youtube’s transcript data as a Vec<TranscriptCore
>
Fields§
§transcripts: Vec<TranscriptCore>
List of transcript texts in TranscriptCore
format
Trait Implementations§
Source§impl From<Transcript> for String
impl From<Transcript> for String
Source§fn from(value: Transcript) -> Self
fn from(value: Transcript) -> Self
Converts to this type from the input type.
Source§impl IntoIterator for Transcript
impl IntoIterator for Transcript
Auto Trait Implementations§
impl Freeze for Transcript
impl RefUnwindSafe for Transcript
impl Send for Transcript
impl Sync for Transcript
impl Unpin for Transcript
impl UnwindSafe for Transcript
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