[][src]Struct rusoto_qldb_session::ValueHolder

pub struct ValueHolder {
    pub ion_binary: Option<Bytes>,
    pub ion_text: Option<String>,
}

A structure that can contain an Amazon Ion value in multiple encoding formats.

Fields

ion_binary: Option<Bytes>

An Amazon Ion binary value contained in a ValueHolder structure.

ion_text: Option<String>

An Amazon Ion plaintext value contained in a ValueHolder structure.

Trait Implementations

impl Clone for ValueHolder[src]

impl Debug for ValueHolder[src]

impl Default for ValueHolder[src]

impl<'de> Deserialize<'de> for ValueHolder[src]

impl PartialEq<ValueHolder> for ValueHolder[src]

impl Serialize for ValueHolder[src]

impl StructuralPartialEq for ValueHolder[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.