Struct ntex_redis::cmd::commands::LPushCommand [−][src]
pub struct LPushCommand(_);
Implementations
impl LPushCommand[src]
impl LPushCommand[src]pub fn if_exists(self) -> Self[src]
Inserts specified values only if key already exists and holds a list.
pub fn value<T>(self, other: T) -> Self where
BulkString: From<T>, [src]
BulkString: From<T>,
Add a value to this command.
pub fn extend<T>(self, other: impl IntoIterator<Item = T>) -> Self where
BulkString: From<T>, [src]
BulkString: From<T>,
Add more values to this command.
Trait Implementations
impl Command for LPushCommand[src]
impl Command for LPushCommand[src]Auto Trait Implementations
impl RefUnwindSafe for LPushCommand
impl RefUnwindSafe for LPushCommandimpl Send for LPushCommand
impl Send for LPushCommandimpl Sync for LPushCommand
impl Sync for LPushCommandimpl Unpin for LPushCommand
impl Unpin for LPushCommandimpl UnwindSafe for LPushCommand
impl UnwindSafe for LPushCommandBlanket Implementations
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
Should always be Self