pub struct CubeLut<T: Float> {
pub title: String,
pub kind: LutKind,
pub domain_min: [T; 3],
pub domain_max: [T; 3],
pub size: usize,
pub data: Vec<[T; 3]>,
}
Fields§
§title: String
§kind: LutKind
§domain_min: [T; 3]
§domain_max: [T; 3]
§size: usize
§data: Vec<[T; 3]>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for CubeLut<T>where
T: Freeze,
impl<T> RefUnwindSafe for CubeLut<T>where
T: RefUnwindSafe,
impl<T> Send for CubeLut<T>where
T: Send,
impl<T> Sync for CubeLut<T>where
T: Sync,
impl<T> Unpin for CubeLut<T>where
T: Unpin,
impl<T> UnwindSafe for CubeLut<T>where
T: UnwindSafe,
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