pub trait IntoSTD140 {
type Output: Pack;
// Required method
fn into_std140(self) -> Self::Output;
}
Expand description
Trait that marks a type as able to be packable into a std140 compatible form
pub trait IntoSTD140 {
type Output: Pack;
// Required method
fn into_std140(self) -> Self::Output;
}
Trait that marks a type as able to be packable into a std140 compatible form