Struct rustis::commands::FtAggregateResult
source · pub struct FtAggregateResult {
pub total_results: usize,
pub results: Vec<Vec<(String, String)>>,
pub cursor_id: Option<u64>,
}Available on crate feature
redis-search only.Expand description
Result for the ft_aggregate command
Fields§
§total_results: usize§results: Vec<Vec<(String, String)>>§cursor_id: Option<u64>Trait Implementations§
source§impl Debug for FtAggregateResult
impl Debug for FtAggregateResult
source§impl<'de> Deserialize<'de> for FtAggregateResult
impl<'de> Deserialize<'de> for FtAggregateResult
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 RefUnwindSafe for FtAggregateResult
impl Send for FtAggregateResult
impl Sync for FtAggregateResult
impl Unpin for FtAggregateResult
impl UnwindSafe for FtAggregateResult
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