[][src]Struct hdbconnect::OutputParameters

pub struct OutputParameters { /* fields omitted */ }

Describes output parameters, as they can be returned by procedure calls.

Methods

impl OutputParameters[src]

pub fn try_into<'de, T>(self) -> HdbResult<T> where
    T: Deserialize<'de>, 
[src]

Converts the contained values in into a plain rust value or a tuple, etc.

pub fn descriptor(&self, i: usize) -> HdbResult<&ParameterDescriptor>[src]

Returns the descriptor for the i'th parameter.

pub fn descriptors(&self) -> &Vec<ParameterDescriptor>[src]

Returns the descriptors.

pub fn values_mut(
    &mut self
) -> &mut <Vec<HdbValue<'static>> as IntoIterator>::IntoIter
[src]

Returns an iterator of the contained values.

Trait Implementations

impl Display for OutputParameters[src]

impl Debug for OutputParameters[src]

impl DeserializableRow for OutputParameters[src]

type V = HdbValue<'static>

The value type used by the database driver.

type E = HdbError

The error type used by the database driver.

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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