Struct youtube_transcript::Transcript
source · 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
§type IntoIter = <Vec<TranscriptCore, Global> as IntoIterator>::IntoIter
type IntoIter = <Vec<TranscriptCore, Global> as IntoIterator>::IntoIter
Which kind of iterator are we turning this into?
§type Item = TranscriptCore
type Item = TranscriptCore
The type of the elements being iterated over.