pub struct ScriptJoin<S, T>(/* private fields */);
Expand description
Represents the set of two scripts which are joined.
Trait Implementations§
Source§impl<S, T> Script for ScriptJoin<S, T>
impl<S, T> Script for ScriptJoin<S, T>
Source§fn info(&self, info: &mut Vec<Info>, args: &mut Vec<ScriptArg>)
fn info(&self, info: &mut Vec<Info>, args: &mut Vec<ScriptArg>)
Retrieve all the script information.
Source§fn join<T: Script>(self, other: T) -> ScriptJoin<Self, T>where
Self: Sized,
fn join<T: Script>(self, other: T) -> ScriptJoin<Self, T>where
Self: Sized,
Join another script making self as inner.
Source§fn invoke<T>(self, con: &mut dyn ConnectionLike) -> RedisResult<T>where
T: FromRedisValue,
Self: Sized,
fn invoke<T>(self, con: &mut dyn ConnectionLike) -> RedisResult<T>where
T: FromRedisValue,
Self: Sized,
Invoke the script.
Source§fn invoke_async<'a, C, T>(self, con: &'a mut C) -> RedisFuture<'a, T>
fn invoke_async<'a, C, T>(self, con: &'a mut C) -> RedisFuture<'a, T>
Invoke the script asynchronously.
Auto Trait Implementations§
impl<S, T> Freeze for ScriptJoin<S, T>
impl<S, T> RefUnwindSafe for ScriptJoin<S, T>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<S, T> Send for ScriptJoin<S, T>
impl<S, T> Sync for ScriptJoin<S, T>
impl<S, T> Unpin for ScriptJoin<S, T>
impl<S, T> UnwindSafe for ScriptJoin<S, T>where
S: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more