#[repr(u8)]pub enum Trigburst {
SINGLE = 0,
BURST = 1,
}Variants§
SINGLE = 0
Single transfer. Hardware trigger causes a single transfer.
BURST = 1
Burst transfer. When the trigger for this channel is set to edge triggered, a hardware trigger causes a burst transfer, as defined by BURSTPOWER. When the trigger for this channel is set to level triggered, a hardware trigger causes transfers to continue as long as the trigger is asserted, unless the transfer is complete.
Implementations§
Trait Implementations§
Source§impl Ord for Trigburst
impl Ord for Trigburst
Source§impl PartialOrd for Trigburst
impl PartialOrd for Trigburst
impl Copy for Trigburst
impl Eq for Trigburst
impl StructuralPartialEq for Trigburst
Auto Trait Implementations§
impl Freeze for Trigburst
impl RefUnwindSafe for Trigburst
impl Send for Trigburst
impl Sync for Trigburst
impl Unpin for Trigburst
impl UnwindSafe for Trigburst
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more