[][src]Struct redo::record::Builder

pub struct Builder { /* fields omitted */ }

Builder for a record.

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 of 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<C: Command>(&self, target: C::Target) -> Record<C>[src]

Builds the record.

pub fn build_with<C: Command, F>(
    &self,
    target: C::Target,
    slot: F
) -> Record<C, F>
[src]

Builds the record with the slot.

pub fn default<C: Command>(&self) -> Record<C> where
    C::Target: Default
[src]

Creates the record with a default target.

pub fn default_with<C: Command, F>(&self, slot: F) -> Record<C, F> where
    C::Target: Default
[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<'de> Deserialize<'de> 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 Serialize 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.