pub enum Reload {
Disabled = 0,
Enabled = 1,
}Expand description
Indicates whether the channel’s control structure will be reloaded when the current descriptor is exhausted. Reloading allows ping-pong and linked transfers.
Value on reset: 0
Variants§
Disabled = 0
0: Disabled. Do not reload the channels’ control structure when the current descriptor is exhausted.
Enabled = 1
1: Enabled. Reload the channels’ control structure when the current descriptor is exhausted.
Trait Implementations§
impl Copy for Reload
impl Eq for Reload
impl StructuralPartialEq for Reload
Auto Trait Implementations§
impl Freeze for Reload
impl RefUnwindSafe for Reload
impl Send for Reload
impl Sync for Reload
impl Unpin for Reload
impl UnwindSafe for Reload
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