[][src]Module fred::owned

An interface for the RedisClient that takes ownership over self with each command.

This interface is ideal for chaining commands together as the underlying implementation will pass the client instance back to the caller after each command. However, the downside to this interface is that it requires taking ownership over the client with each command, limiting the use of wrapping structs or semantics that require limiting ownership over the client.

Traits

RedisClientOwned