Struct redis::ScriptInvocation
source · [−]pub struct ScriptInvocation<'a> { /* private fields */ }
Expand description
Represents a prepared script call.
Implementations
sourceimpl<'a> ScriptInvocation<'a>
impl<'a> ScriptInvocation<'a>
This type collects keys and other arguments for the script so that it
can be then invoked. While the Script
type itself holds the script,
the ScriptInvocation
holds the arguments that should be invoked until
it’s sent to the server.
sourcepub fn arg<'b, T: ToRedisArgs>(
&'b mut self,
arg: T
) -> &'b mut ScriptInvocation<'a> where
'a: 'b,
pub fn arg<'b, T: ToRedisArgs>(
&'b mut self,
arg: T
) -> &'b mut ScriptInvocation<'a> where
'a: 'b,
Adds a regular argument to the invocation. This ends up as ARGV[i]
in the script.
sourcepub fn key<'b, T: ToRedisArgs>(
&'b mut self,
key: T
) -> &'b mut ScriptInvocation<'a> where
'a: 'b,
pub fn key<'b, T: ToRedisArgs>(
&'b mut self,
key: T
) -> &'b mut ScriptInvocation<'a> where
'a: 'b,
Adds a key argument to the invocation. This ends up as KEYS[i]
in the script.
sourcepub fn invoke<T: FromRedisValue>(
&self,
con: &mut dyn ConnectionLike
) -> RedisResult<T>
pub fn invoke<T: FromRedisValue>(
&self,
con: &mut dyn ConnectionLike
) -> RedisResult<T>
Invokes the script and returns the result.
sourcepub async fn invoke_async<C, T>(&self, con: &mut C) -> RedisResult<T> where
C: ConnectionLike,
T: FromRedisValue,
pub async fn invoke_async<C, T>(&self, con: &mut C) -> RedisResult<T> where
C: ConnectionLike,
T: FromRedisValue,
Asynchronously invokes the script and returns the result.
Auto Trait Implementations
impl<'a> RefUnwindSafe for ScriptInvocation<'a>
impl<'a> Send for ScriptInvocation<'a>
impl<'a> Sync for ScriptInvocation<'a>
impl<'a> Unpin for ScriptInvocation<'a>
impl<'a> UnwindSafe for ScriptInvocation<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more