Skip to main content

GetBit

Trait GetBit 

Source
pub trait GetBit {
    type Output: Boolean;

    // Required method
    fn get_bit(&self, index: usize, signed: bool) -> Self::Output;
}

Required Associated Types§

Source

type Output: Boolean

Required Methods§

Source

fn get_bit(&self, index: usize, signed: bool) -> Self::Output

Implementors§

Source§

impl<F: ActuallyUsedField> GetBit for F