pub trait BReaderFields {
Show 65 associated items
type P0R: BRead;
type P1R: BRead;
type P2R: BRead;
type P3R: BRead;
type P4R: BRead;
type P5R: BRead;
type P6R: BRead;
type P7R: BRead;
type P8R: BRead;
type P9R: BRead;
type P10R: BRead;
type P11R: BRead;
type P12R: BRead;
type P13R: BRead;
type P14R: BRead;
type P15R: BRead;
type P16R: BRead;
type P17R: BRead;
type P18R: BRead;
type P19R: BRead;
type P20R: BRead;
type P21R: BRead;
type P22R: BRead;
type P23R: BRead;
type P24R: BRead;
type P25R: BRead;
type P26R: BRead;
type P27R: BRead;
type P28R: BRead;
type P29R: BRead;
type P30R: BRead;
type P31R: BRead;
// Required methods
fn p0(&self) -> Self::P0R;
fn p1(&self) -> Self::P1R;
fn p2(&self) -> Self::P2R;
fn p3(&self) -> Self::P3R;
fn p4(&self) -> Self::P4R;
fn p5(&self) -> Self::P5R;
fn p6(&self) -> Self::P6R;
fn p7(&self) -> Self::P7R;
fn p8(&self) -> Self::P8R;
fn p9(&self) -> Self::P9R;
fn p10(&self) -> Self::P10R;
fn p11(&self) -> Self::P11R;
fn p12(&self) -> Self::P12R;
fn p13(&self) -> Self::P13R;
fn p14(&self) -> Self::P14R;
fn p15(&self) -> Self::P15R;
fn p16(&self) -> Self::P16R;
fn p17(&self) -> Self::P17R;
fn p18(&self) -> Self::P18R;
fn p19(&self) -> Self::P19R;
fn p20(&self) -> Self::P20R;
fn p21(&self) -> Self::P21R;
fn p22(&self) -> Self::P22R;
fn p23(&self) -> Self::P23R;
fn p24(&self) -> Self::P24R;
fn p25(&self) -> Self::P25R;
fn p26(&self) -> Self::P26R;
fn p27(&self) -> Self::P27R;
fn p28(&self) -> Self::P28R;
fn p29(&self) -> Self::P29R;
fn p30(&self) -> Self::P30R;
fn p31(&self) -> Self::P31R;
fn bits(&self) -> u32;
}Expand description
Trait providing .p0(), .p1(), …, .p31(), and .bits() methods as
readers as found on most PIO registers.