pub enum YouTubeTranscriptApiError {
Generic,
}
Expand description
§YouTubeTranscriptApiError
The base error type for the library.
This is mainly used as a generic error type for cases that don’t fall into more specific error categories.
Variants§
Generic
Trait Implementations§
Source§impl Debug for YouTubeTranscriptApiError
impl Debug for YouTubeTranscriptApiError
Source§impl Display for YouTubeTranscriptApiError
impl Display for YouTubeTranscriptApiError
Source§impl Error for YouTubeTranscriptApiError
impl Error for YouTubeTranscriptApiError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for YouTubeTranscriptApiError
impl RefUnwindSafe for YouTubeTranscriptApiError
impl Send for YouTubeTranscriptApiError
impl Sync for YouTubeTranscriptApiError
impl Unpin for YouTubeTranscriptApiError
impl UnwindSafe for YouTubeTranscriptApiError
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