Struct mongodb::SessionCursor[][src]

pub struct SessionCursor<T> where
    T: DeserializeOwned + Unpin
{ /* fields omitted */ }

A SessionCursor is a cursor that was created with a ClientSession and must be iterated using one. To iterate, retrieve a SessionCursorHandle using SessionCursor::with_session:

while let Some(doc) = cursor.with_session(&mut session).next().await {
    println!("{}", doc?)
}

Implementations

impl<T> SessionCursor<T> where
    T: DeserializeOwned + Unpin
[src]

pub fn with_session<'session>(
    &mut self,
    session: &'session mut ClientSession
) -> SessionCursorHandle<'_, 'session, T>
[src]

Retrieves a SessionCursorHandle to iterate this cursor. The session provided must be the same session used to create the cursor.

Trait Implementations

impl<T: Debug> Debug for SessionCursor<T> where
    T: DeserializeOwned + Unpin
[src]

impl<T> Drop for SessionCursor<T> where
    T: DeserializeOwned + Unpin
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for SessionCursor<T>

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

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

impl<T> Unpin for SessionCursor<T>

impl<T> !UnwindSafe for SessionCursor<T>

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, 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>,