[][src]Struct hdbconnect::OutputParameters

pub struct OutputParameters { /* fields omitted */ }

A set of output parameters, as they can be returned by procedure calls.

Contains metadata (the descriptors), and the values.

Implementations

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.

Errors

HdbError::Deserialization if the conversion is not implemented.

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

Returns the descriptors.

pub fn into_values(self) -> Vec<HdbValue<'static>>[src]

Converts into an iterator of the contained values.

pub fn into_descriptors_and_values(
    self
) -> (Vec<ParameterDescriptor>, Vec<HdbValue<'static>>)
[src]

Converts into a vec of the parameter descriptors and a vec of the contained values.

Trait Implementations

impl Debug for OutputParameters[src]

impl Display for OutputParameters[src]

Auto Trait Implementations

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, 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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,