pub struct VobSubPalette {
pub rgba: [u32; 16],
}Expand description
VobSub palette (16 RGBA colors).
Fields§
§rgba: [u32; 16]16 RGBA colors (packed as u32 in little-endian: R, G, B, A bytes)
Trait Implementations§
Source§impl Clone for VobSubPalette
impl Clone for VobSubPalette
Source§fn clone(&self) -> VobSubPalette
fn clone(&self) -> VobSubPalette
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 VobSubPalette
impl Debug for VobSubPalette
Auto Trait Implementations§
impl Freeze for VobSubPalette
impl RefUnwindSafe for VobSubPalette
impl Send for VobSubPalette
impl Sync for VobSubPalette
impl Unpin for VobSubPalette
impl UnsafeUnpin for VobSubPalette
impl UnwindSafe for VobSubPalette
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