[][src]Struct undo::history::Builder

pub struct Builder { /* fields omitted */ }

Builder for a History.

Implementations

impl Builder[src]

pub fn new() -> Builder[src]

Returns a builder for a history.

pub fn capacity(&mut self, capacity: usize) -> &mut Builder[src]

Sets the capacity for the history.

pub fn limit(&mut self, limit: usize) -> &mut Builder[src]

Sets the limit for the history.

Panics

Panics if limit is 0.

pub fn saved(&mut self, saved: bool) -> &mut Builder[src]

Sets if the target is initially in a saved state. By default the target is in a saved state.

pub fn build<C: Command>(&self) -> History<C>[src]

Builds the history.

pub fn build_with<C: Command, F: FnMut(Signal)>(&self, slot: F) -> History<C, F>[src]

Builds the history with the slot.

Trait Implementations

impl Debug for Builder[src]

impl Default for Builder[src]

impl<'de> Deserialize<'de> for Builder[src]

impl Serialize for Builder[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.