[][src]Struct interact::Assist

pub struct Assist<T> { /* fields omitted */ }

Given a list of items, this provides assistance for completing them.

Methods

impl<T> Assist<T>[src]

pub fn pend(&mut self, count: usize)[src]

pub fn pend_one(&mut self)[src]

pub fn pending(&self) -> usize[src]

pub fn has_pending(&self) -> bool[src]

pub fn commit_pending(&mut self)[src]

pub fn next_options(self, next_options: NextOptions<T>) -> Self[src]

pub fn set_next_options(&mut self, next_options: NextOptions<T>)[src]

pub fn set_pending_special(&mut self, pending_special: usize)[src]

pub fn with_valid(self, valid: usize) -> Self[src]

pub fn dismantle(self) -> (usize, usize, usize, NextOptions<T>)[src]

Trait Implementations

impl<T: PartialEq> PartialEq<Assist<T>> for Assist<T>[src]

impl<T: Eq> Eq for Assist<T>[src]

impl<T: Clone> Clone for Assist<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Default> Default for Assist<T>[src]

impl<T: Debug> Debug for Assist<T>[src]

Auto Trait Implementations

impl<T> Send for Assist<T> where
    T: Send

impl<T> Sync for Assist<T> where
    T: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]