pub trait AsStd140 {
type Std140: ReprStd140;
// Required method
fn as_std140(&self) -> Self::Std140;
}Expand description
Implemented for types that can be represented as [st140] values.
Required Associated Types§
Sourcetype Std140: ReprStd140
type Std140: ReprStd140
The std140 that this type converts to.