Trait mcp3425::ConversionMode [] [src]

pub trait ConversionMode {
    fn bits(&self) -> u8;
}

The two conversion mode structs implement this trait.

This allows the MCP3425 instance to be generic over the conversion mode.

Required Methods

Return the bitmask for this conversion mode

Implementors