[][src]Struct hdbconnect::ParameterDescriptors

pub struct ParameterDescriptors(_);

Describes a set of IN, INOUT, and OUT parameters. Can be empty.

Methods

impl ParameterDescriptors[src]

pub fn iter_in(&self) -> impl Iterator<Item = &ParameterDescriptor>[src]

Produces an iterator that returns the IN and INOUT parameters.

pub fn iter_out(&self) -> impl Iterator<Item = &ParameterDescriptor>[src]

Produces an iterator that returns the INOUT and OUT parameters.

pub fn has_in(&self) -> bool[src]

Returns true if at least one IN or INOUT parameter is contained.

pub fn len(&self) -> usize[src]

Returns number of contained descriptors.

pub fn is_empty(&self) -> bool[src]

Returns true exactly if the lsit is empty.

Trait Implementations

impl Debug for ParameterDescriptors[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, 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>,