pub trait TaffyGridLine {
// Required method
fn from_line_index(index: i16) -> Self;
}
Expand description
Trait to abstract over grid line values
Required Methods§
Sourcefn from_line_index(index: i16) -> Self
fn from_line_index(index: i16) -> Self
Converts an i16 into Self
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.