Trait drone_cortexm::reg::field::WWRegFieldBitBand[][src]

pub trait WWRegFieldBitBand<T: RegTag> where
    Self: WWRegFieldBitBandMarker<T>,
    Self::Reg: RegBitBand<T> + WReg<T>, 
{ fn set_bit_band(&self);
fn clear_bit_band(&self);
fn to_bit_band_mut_ptr(&self) -> *mut usize; }

Writable single-bit field of writable register located in the peripheral bit-band region.

Required methods

fn set_bit_band(&self)[src]

Sets this bit through the peripheral bit-band region alias.

fn clear_bit_band(&self)[src]

Clears this bit through the peripheral bit-band region alias.

fn to_bit_band_mut_ptr(&self) -> *mut usize[src]

Returns a mutable raw pointer to the bit-band alias address of this field.

See also RRRegFieldBitBand::to_bit_band_ptr.

Loading content...

Implementors

impl<T, R> WWRegFieldBitBand<T> for R where
    T: RegTag,
    R: WWRegFieldBitBandMarker<T>,
    R::Reg: RegBitBand<T> + WReg<T>, 
[src]

Loading content...