pub struct VobSubMetadata {
pub width: u16,
pub height: u16,
pub language: Option<String>,
pub id: Option<String>,
}Expand description
VobSub metadata.
Fields§
§width: u16Video width
height: u16Video height
language: Option<String>Language code (if specified)
id: Option<String>Subtitle track ID
Trait Implementations§
Source§impl Clone for VobSubMetadata
impl Clone for VobSubMetadata
Source§fn clone(&self) -> VobSubMetadata
fn clone(&self) -> VobSubMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VobSubMetadata
impl Debug for VobSubMetadata
Auto Trait Implementations§
impl Freeze for VobSubMetadata
impl RefUnwindSafe for VobSubMetadata
impl Send for VobSubMetadata
impl Sync for VobSubMetadata
impl Unpin for VobSubMetadata
impl UnsafeUnpin for VobSubMetadata
impl UnwindSafe for VobSubMetadata
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