Struct redis_driver::SortOptions
source · [−]pub struct SortOptions<BP = &'static str, GP = &'static str>where
BP: Into<BulkString>,
GP: Into<BulkString>,{ /* private fields */ }
Expand description
Options of the sort command
Implementations
sourceimpl<BP, GP> SortOptions<BP, GP>where
BP: Into<BulkString>,
GP: Into<BulkString>,
impl<BP, GP> SortOptions<BP, GP>where
BP: Into<BulkString>,
GP: Into<BulkString>,
Trait Implementations
sourceimpl<BP: Default, GP: Default> Default for SortOptions<BP, GP>where
BP: Into<BulkString>,
GP: Into<BulkString>,
impl<BP: Default, GP: Default> Default for SortOptions<BP, GP>where
BP: Into<BulkString>,
GP: Into<BulkString>,
sourcefn default() -> SortOptions<BP, GP>
fn default() -> SortOptions<BP, GP>
Returns the “default value” for a type. Read more
sourceimpl<BP, GP> IntoArgs for SortOptions<BP, GP>where
BP: Into<BulkString>,
GP: Into<BulkString>,
impl<BP, GP> IntoArgs for SortOptions<BP, GP>where
BP: Into<BulkString>,
GP: Into<BulkString>,
fn into_args(self, args: CommandArgs) -> CommandArgs
fn num_args(&self) -> usize
Auto Trait Implementations
impl<BP, GP> RefUnwindSafe for SortOptions<BP, GP>where
BP: RefUnwindSafe,
GP: RefUnwindSafe,
impl<BP, GP> Send for SortOptions<BP, GP>where
BP: Send,
GP: Send,
impl<BP, GP> Sync for SortOptions<BP, GP>where
BP: Sync,
GP: Sync,
impl<BP, GP> Unpin for SortOptions<BP, GP>where
BP: Unpin,
GP: Unpin,
impl<BP, GP> UnwindSafe for SortOptions<BP, GP>where
BP: UnwindSafe,
GP: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more