Enum kramer::ListCommand

source ·
pub enum ListCommand<S, V> {
    Len(S),
    Push((Side, Insertion), S, Arity<V>),
    Pop(Side, S, Option<(Option<Arity<S>>, u64)>),
    Rem(S, V, u64),
    Index(S, i64),
    Set(S, u64, V),
    Insert(S, Side, V, V),
    Trim(S, i64, i64),
    Range(S, i64, i64),
}
Expand description

Lists.

Variants§

§

Len(S)

List length.

§

Push((Side, Insertion), S, Arity<V>)

Adds an item to the list on the correct side.

§

Pop(Side, S, Option<(Option<Arity<S>>, u64)>)

Pops an item from the side of a list with the option for a timeout.

§

Rem(S, V, u64)

Removes items from a list.

§

Index(S, i64)

Returns the index of an item in a list.

§

Set(S, u64, V)

Sets the value of an index of a list.

§

Insert(S, Side, V, V)

Inserts a value into a list.

§

Trim(S, i64, i64)

Truncate a list.

§

Range(S, i64, i64)

Return the length of a list.

Trait Implementations§

source§

impl<S: Debug, V: Debug> Debug for ListCommand<S, V>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S, V> Display for ListCommand<S, V>where S: Display, V: Display,

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<S, V> RefUnwindSafe for ListCommand<S, V>where S: RefUnwindSafe, V: RefUnwindSafe,

§

impl<S, V> Send for ListCommand<S, V>where S: Send, V: Send,

§

impl<S, V> Sync for ListCommand<S, V>where S: Sync, V: Sync,

§

impl<S, V> Unpin for ListCommand<S, V>where S: Unpin, V: Unpin,

§

impl<S, V> UnwindSafe for ListCommand<S, V>where S: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.