pub struct Bgra64<const BE: bool = false>(/* private fields */);Expand description
Zero-sized marker for the packed BGRA64 source format
(AV_PIX_FMT_BGRA64{LE,BE}). <const BE: bool> defaults to false
(LE); the alias Bgra64 resolves to Bgra64<false>.
Implementations§
Trait Implementations§
impl<const BE: bool> Copy for Bgra64<BE>
impl<const BE: bool> Eq for Bgra64<BE>
Source§impl<const BE: bool> PartialEq for Bgra64<BE>
impl<const BE: bool> PartialEq for Bgra64<BE>
impl<const BE: bool> SourceFormat for Bgra64<BE>
impl<const BE: bool> StructuralPartialEq for Bgra64<BE>
Auto Trait Implementations§
impl<const BE: bool> Freeze for Bgra64<BE>
impl<const BE: bool> RefUnwindSafe for Bgra64<BE>
impl<const BE: bool> Send for Bgra64<BE>
impl<const BE: bool> Sync for Bgra64<BE>
impl<const BE: bool> Unpin for Bgra64<BE>
impl<const BE: bool> UnsafeUnpin for Bgra64<BE>
impl<const BE: bool> UnwindSafe for Bgra64<BE>
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