[][src]Struct undo::Builder

pub struct Builder { /* fields omitted */ }

A builder for a record.

Examples

Builder::new()
    .capacity(100)
    .limit(100)
    .saved(false)
    .default()

Methods

impl Builder[src]

pub fn new() -> Builder[src]

Returns a builder for a record.

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

Sets the capacity for the record.

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

Sets the limit for the record.

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<T>(&self, target: T) -> Record<T>[src]

Builds the record.

pub fn build_with<T>(
    &self,
    target: T,
    slot: impl FnMut(Signal) + 'static
) -> Record<T>
[src]

Builds the record with the slot.

pub fn default<T: Default>(&self) -> Record<T>[src]

Creates the record with a default target.

pub fn default_with<T: Default>(
    &self,
    slot: impl FnMut(Signal) + 'static
) -> Record<T>
[src]

Creates the record with a default target and with the slot.

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

impl Default for Builder[src]

impl Eq for Builder[src]

impl Hash for Builder[src]

impl Ord for Builder[src]

impl PartialEq<Builder> for Builder[src]

impl PartialOrd<Builder> for Builder[src]

impl StructuralEq for Builder[src]

impl StructuralPartialEq for Builder[src]

Auto Trait Implementations

impl RefUnwindSafe for Builder

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.