[][src]Struct pleingres::Portal

pub struct Portal<'b, 'a: 'b, 'c> { /* fields omitted */ }

A portal (the result of a bind). Portals can be executed, or… executed.

Methods

impl<'a, 'b: 'a, 'c> Portal<'a, 'b, 'c>[src]

pub fn execute(self, max_rows: i32)[src]

Execute a given portal, returning at most the supplied number of rows, or an unlimited number if max_rows == 0.

Trait Implementations

impl<'a, 'b: 'a, 'c> Drop for Portal<'a, 'b, 'c>[src]

Auto Trait Implementations

impl<'b, 'a, 'c> Send for Portal<'b, 'a, 'c>

impl<'b, 'a, 'c> Sync for Portal<'b, 'a, 'c>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self