[][src]Struct arcon::weld::data::Dict

#[repr(C)]
pub struct Dict<K, V> { /* fields omitted */ }

The dictionary type.

Like builders, dictionaries currently have an opaque format. At some point, dictionaries will have methods for accessing keys and values and iterating over them. For now, these operations require compiling a Weld program.

Trait Implementations

impl<K, V> Debug for Dict<K, V> where
    K: Debug,
    V: Debug
[src]

impl<K, V> Clone for Dict<K, V> where
    K: Clone,
    V: Clone
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<K, V> !Send for Dict<K, V>

impl<K, V> Unpin for Dict<K, V> where
    K: Unpin,
    V: Unpin

impl<K, V> !Sync for Dict<K, V>

impl<K, V> UnwindSafe for Dict<K, V> where
    K: UnwindSafe,
    V: UnwindSafe

impl<K, V> RefUnwindSafe for Dict<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

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

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

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.

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> Erased for T

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