pub struct OrderPredicate<'a> {
pub column: &'a str,
pub direction: Direction,
}Fields§
§column: &'a str§direction: DirectionTrait Implementations§
Source§impl<'a> Clone for OrderPredicate<'a>
impl<'a> Clone for OrderPredicate<'a>
Source§fn clone(&self) -> OrderPredicate<'a>
fn clone(&self) -> OrderPredicate<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for OrderPredicate<'a>
impl<'a> Debug for OrderPredicate<'a>
Source§impl<'a> From<OrderPredicate<'a>> for String
impl<'a> From<OrderPredicate<'a>> for String
Source§fn from(value: OrderPredicate<'a>) -> Self
fn from(value: OrderPredicate<'a>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for OrderPredicate<'a>
impl<'a> RefUnwindSafe for OrderPredicate<'a>
impl<'a> Send for OrderPredicate<'a>
impl<'a> Sync for OrderPredicate<'a>
impl<'a> Unpin for OrderPredicate<'a>
impl<'a> UnwindSafe for OrderPredicate<'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