pub enum Policy {
Other,
Fifo,
RoundRobin,
Batch,
Idle,
Deadline,
}Expand description
Policies that may be set
Not all of these are supported by this binding.
Specifically, this binding was made to support a simple use of RoundRobin.
If you are considering another policy, consider updating this source as well.
Variants§
Auto Trait Implementations§
impl Freeze for Policy
impl RefUnwindSafe for Policy
impl Send for Policy
impl Sync for Policy
impl Unpin for Policy
impl UnwindSafe for Policy
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