pub trait BitOrderType {
    // Required method
    fn to_bit_order(self) -> Result<BitOrder, ArrayError>;
}
Expand description

BitOrder trait

Required Methods§

source

fn to_bit_order(self) -> Result<BitOrder, ArrayError>

Parse input to BitOrder type

Implementations on Foreign Types§

source§

impl BitOrderType for String

source§

impl BitOrderType for &str

Implementors§