pub struct QueueDecision {
pub to_resume: Vec<Id20>,
pub to_pause: Vec<Id20>,
}Expand description
Result of queue evaluation: which torrents to start and stop.
Fields§
§to_resume: Vec<Id20>Torrents to resume (promote into an active slot).
to_pause: Vec<Id20>Torrents to pause (demote out of an active slot).
Trait Implementations§
Source§impl Debug for QueueDecision
impl Debug for QueueDecision
Source§impl Default for QueueDecision
impl Default for QueueDecision
Source§fn default() -> QueueDecision
fn default() -> QueueDecision
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QueueDecision
impl RefUnwindSafe for QueueDecision
impl Send for QueueDecision
impl Sync for QueueDecision
impl Unpin for QueueDecision
impl UnsafeUnpin for QueueDecision
impl UnwindSafe for QueueDecision
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