[][src]Struct history_navigation::History

pub struct History<T> {
    pub index: usize,
    // some fields omitted
}

History is a vector with support for go forward and go back

Fields

index: usize

Methods

impl<T> History<T>[src]

pub const fn new() -> History<T>[src]

Creates a new history

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

Returns whether you can go backwards

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

Returns whether you can go forwards

pub fn go_forward(&mut self)[src]

Go forward

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

Go count times forward

pub fn go_backward(&mut self)[src]

Go backwards

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

Go count times backwards

pub fn push(&mut self, element: T)[src]

Pushes a new element to history

pub fn pop(&mut self) -> Option<T>[src]

Removes the last element from a vector and returns it, or None if it is empty

pub fn get_current(&self) -> &T[src]

Returns the current element

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

Returns the length of the history

Trait Implementations

impl<T> Index<usize> for History<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<usize> for History<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for History<T> where
    T: RefUnwindSafe

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

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

impl<T> Unpin for History<T> where
    T: Unpin

impl<T> UnwindSafe for History<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.