Struct ant_king_image::sled_json::TreeWrapper[][src]

pub struct TreeWrapper<K, V> where
    K: Encoder<'a>,
    V: Encoder<'a>, 
{ /* fields omitted */ }

Implementations

impl<K, V> TreeWrapper<K, V> where
    K: Encoder<'a>,
    V: Encoder<'a>, 
[src]

pub fn new(tree: Tree) -> Self[src]

pub fn insert(
    &self,
    key: String,
    value: <V as Encoder<'_>>::In
) -> Result<Option<IVecWrapper<V>>>
[src]

pub fn get(&self, key: String) -> Result<Option<IVecWrapper<V>>>[src]

Auto Trait Implementations

impl<K, V> !RefUnwindSafe for TreeWrapper<K, V>

impl<K, V> Send for TreeWrapper<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for TreeWrapper<K, V> where
    K: Sync,
    V: Sync

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

impl<K, V> !UnwindSafe for TreeWrapper<K, V>

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> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.