pub trait Lined: CubeType<ExpandType: LinedExpand> {
// Provided methods
fn line_size(&self) -> u32 { ... }
fn __expand_line_size(_scope: &mut Scope, this: Self::ExpandType) -> u32 { ... }
}Provided Methods§
fn line_size(&self) -> u32
fn __expand_line_size(_scope: &mut Scope, this: Self::ExpandType) -> u32
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.