pub struct LutLine {
pub enabled: bool,
pub first_block: u8,
pub last_block: u8,
pub line_offset_blocks: u32,
}Expand description
One LUT line entry.
Fields§
§enabled: boolLine is mapped through the LUT.
first_block: u8First valid block index within the line.
last_block: u8Last valid block index within the line.
line_offset_blocks: u32Line offset in blocks from the physical buffer base (block 0 of this line).
Trait Implementations§
impl Copy for LutLine
Auto Trait Implementations§
impl Freeze for LutLine
impl RefUnwindSafe for LutLine
impl Send for LutLine
impl Sync for LutLine
impl Unpin for LutLine
impl UnwindSafe for LutLine
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