pub struct Grayf32<const BE: bool = false>(/* private fields */);Expand description
Marker type for the Grayf32 source format (32-bit float luma).
Nominal luma range [0.0, 1.0]; HDR values > 1.0 are permitted.
Out-of-range values are clamped during output conversion, not at frame
construction time. <const BE: bool> defaults to false (LE).
Implementations§
Trait Implementations§
impl<const BE: bool> Copy for Grayf32<BE>
Source§impl<const BE: bool> PartialEq for Grayf32<BE>
impl<const BE: bool> PartialEq for Grayf32<BE>
impl<const BE: bool> SourceFormat for Grayf32<BE>
impl<const BE: bool> StructuralPartialEq for Grayf32<BE>
Auto Trait Implementations§
impl<const BE: bool> Freeze for Grayf32<BE>
impl<const BE: bool> RefUnwindSafe for Grayf32<BE>
impl<const BE: bool> Send for Grayf32<BE>
impl<const BE: bool> Sync for Grayf32<BE>
impl<const BE: bool> Unpin for Grayf32<BE>
impl<const BE: bool> UnsafeUnpin for Grayf32<BE>
impl<const BE: bool> UnwindSafe for Grayf32<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