pub enum UniversalClient {
Client(Client),
Cluster(ClusterClient),
}
Expand description
UniversalClient which is either redis::Client
or redis::cluster::ClusterClient
.
Variants§
Client(Client)
Cluster(ClusterClient)
Implementations§
Source§impl UniversalClient
impl UniversalClient
pub fn get_connection(&self) -> RedisResult<UniversalConnection>
Sourcepub fn open<T: IntoConnectionInfo + Clone>(
addrs: Vec<T>,
) -> RedisResult<UniversalClient>
pub fn open<T: IntoConnectionInfo + Clone>( addrs: Vec<T>, ) -> RedisResult<UniversalClient>
Get Connection when single addr is specified. Get ClusterConnection when multiple addrs are
specified. If you want Cluster with single address, use UniversalBuilder
to construct
UniversalClient
.
Trait Implementations§
Source§impl Clone for UniversalClient
impl Clone for UniversalClient
Source§fn clone(&self) -> UniversalClient
fn clone(&self) -> UniversalClient
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for UniversalClient
impl RefUnwindSafe for UniversalClient
impl Send for UniversalClient
impl Sync for UniversalClient
impl Unpin for UniversalClient
impl UnwindSafe for UniversalClient
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