pub unsafe trait PossibleFloatFormatDesc: FormatDesc {
    fn is_float(&self) -> bool;
}
Expand description

Trait for types that can possibly describe a float attachment.

Required Methods

Returns true if the format is a float format.

Implementors