pub struct SortedSet<'a> {
pub key: &'a [u8],
pub items: &'a [Item],
pub meta: &'a Meta,
}
Expand description
代表Redis中的SortedSet类型数据
Fields§
§key: &'a [u8]
数据的key
items: &'a [Item]
SortedSet中所有的元素
meta: &'a Meta
数据的元信息
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SortedSet<'a>
impl<'a> RefUnwindSafe for SortedSet<'a>
impl<'a> Send for SortedSet<'a>
impl<'a> Sync for SortedSet<'a>
impl<'a> Unpin for SortedSet<'a>
impl<'a> UnwindSafe for SortedSet<'a>
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