pub enum SubtitleCodec {
Ass,
Pgs,
Subrip,
Srt,
DvdSubtitle,
MovText,
Vtt,
DvbSubtitle,
Unknown,
}
Variants§
Trait Implementations§
Source§impl Clone for SubtitleCodec
impl Clone for SubtitleCodec
Source§fn clone(&self) -> SubtitleCodec
fn clone(&self) -> SubtitleCodec
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SubtitleCodec
impl Debug for SubtitleCodec
Source§impl<'de> Deserialize<'de> for SubtitleCodec
impl<'de> Deserialize<'de> for SubtitleCodec
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
Source§impl Display for SubtitleCodec
impl Display for SubtitleCodec
Source§impl FromStr for SubtitleCodec
impl FromStr for SubtitleCodec
Source§impl PartialEq for SubtitleCodec
impl PartialEq for SubtitleCodec
Source§impl Serialize for SubtitleCodec
impl Serialize for SubtitleCodec
impl Copy for SubtitleCodec
impl Eq for SubtitleCodec
impl StructuralPartialEq for SubtitleCodec
Auto Trait Implementations§
impl Freeze for SubtitleCodec
impl RefUnwindSafe for SubtitleCodec
impl Send for SubtitleCodec
impl Sync for SubtitleCodec
impl Unpin for SubtitleCodec
impl UnwindSafe for SubtitleCodec
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