pub enum PgsSegment {
Pcs(Rc<PgsPcsSegment>),
Wds(Rc<PgsWdsSegment>),
Pds(Rc<PgsPdsSegment>),
Ods(Rc<PgsOdsSegment>),
End,
}
Expand description
Enum representing different types of PGS (Presentation Graphic Stream) segments. These segments are used in Blu-ray subtitles to define various aspects of the subtitle data.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PgsSegment
impl RefUnwindSafe for PgsSegment
impl !Send for PgsSegment
impl !Sync for PgsSegment
impl Unpin for PgsSegment
impl UnwindSafe for PgsSegment
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