Struct rustis::commands::TopKListWithCountResult
source · pub struct TopKListWithCountResult<N: PrimitiveResponse + DeserializeOwned> {
pub items: Vec<(N, usize)>,
/* private fields */
}
Available on crate feature
redis-bloom
only.Fields§
§items: Vec<(N, usize)>
Trait Implementations§
source§impl<N: Debug + PrimitiveResponse + DeserializeOwned> Debug for TopKListWithCountResult<N>
impl<N: Debug + PrimitiveResponse + DeserializeOwned> Debug for TopKListWithCountResult<N>
source§impl<'de, N> Deserialize<'de> for TopKListWithCountResult<N>where
N: PrimitiveResponse + DeserializeOwned,
impl<'de, N> Deserialize<'de> for TopKListWithCountResult<N>where
N: PrimitiveResponse + DeserializeOwned,
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<N> RefUnwindSafe for TopKListWithCountResult<N>where
N: RefUnwindSafe,
impl<N> Send for TopKListWithCountResult<N>where
N: Send,
impl<N> Sync for TopKListWithCountResult<N>where
N: Sync,
impl<N> Unpin for TopKListWithCountResult<N>where
N: Unpin,
impl<N> UnwindSafe for TopKListWithCountResult<N>where
N: UnwindSafe,
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