pub struct ScriptInvocation<'a> { /* private fields */ }
Expand description

Represents a prepared script call.

Implementations§

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.

Adds a regular argument to the invocation. This ends up as ARGV[i] in the script.

Adds a key argument to the invocation. This ends up as KEYS[i] in the script.

Invokes the script and returns the result.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.