pub trait HyperLogLogCommands<'a>: Sized {
// Provided methods
fn pfadd(
self,
key: impl Args,
elements: impl Args,
) -> PreparedCommand<'a, Self, bool> { ... }
fn pfcount(self, keys: impl Args) -> PreparedCommand<'a, Self, usize> { ... }
fn pfmerge(
self,
dest_key: impl Args,
source_keys: impl Args,
) -> PreparedCommand<'a, Self, ()> { ... }
}Expand description
Provided Methods§
Sourcefn pfadd(
self,
key: impl Args,
elements: impl Args,
) -> PreparedCommand<'a, Self, bool>
fn pfadd( self, key: impl Args, elements: impl Args, ) -> PreparedCommand<'a, Self, bool>
Sourcefn pfcount(self, keys: impl Args) -> PreparedCommand<'a, Self, usize>
fn pfcount(self, keys: impl Args) -> PreparedCommand<'a, Self, usize>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.