Struct mongod::Sort[][src]

pub struct Sort<T: Field + Into<String>>(_);

A helper type to create a typed dictionary of sorted fields.

This type is used to sort documents fetched from the mongodb, it takes Field, Order pairs.

Example

Sorting a user collection by name.

use mongod::bson::Document;
use mongod::{AsField, Field, Order, Query, Sort};

#[mongo(collection="users", filter, update)]
#[derive(Bson, Mongo)]
pub struct User {
    pub name: String,
}

impl AsField<UserField> for User {}

pub enum UserField {
    Name,
}

impl Field for UserField {}

impl From<UserField> for String {
    fn from(field: UserField) -> String {
        match field {
            UserField::Name => "name".to_owned(),
        }
    }
}

let client = mongod::Client::default();

let mut sort = Sort::new();
sort.push(UserField::Name, Order::Asc);

let _cursor = Query::find::<User>()
    .sort(sort)
    .query(&client)
    .await
    .unwrap();

Implementations

impl<T: Field + Into<String>> Sort<T>[src]

pub fn new() -> Self[src]

Creates an empty Sort.

pub fn push(&mut self, field: T, order: Order<T>) -> &mut Self[src]

Pushes a (Field, Order) pair into the sort.

pub fn into_document(self) -> Document[src]

Converts the Sort into a BSON Document.

Trait Implementations

impl<T: Clone + Field + Into<String>> Clone for Sort<T>[src]

impl<T> Default for Sort<T> where
    T: Field + Into<String>, 
[src]

impl<T: Field + Into<String>> Serialize for Sort<T> where
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Sort<T> where
    T: RefUnwindSafe

impl<T> Send for Sort<T> where
    T: Send

impl<T> Sync for Sort<T> where
    T: Sync

impl<T> Unpin for Sort<T> where
    T: Unpin

impl<T> UnwindSafe for Sort<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,