logo
pub trait Std430Convertible<T>: Copy where
    T: Std430
{ fn into_std430(self) -> T;
fn from_std430(T) -> Self; }
Expand description

Trait specifically for Std430::Padded, implements conversions between padded type and base type.

Required methods

Convert from self to Std430

Convert from Std430 to self

Implementors