Trait genet_sdk::slice::TryGet[][src]

pub trait TryGet<T> {
    type Output;
    fn try_get(&self, index: T) -> Result<Self::Output, Error>;
}

TryGet trait.

Associated Types

Required Methods

Returns a byte or subslice depending on the type of index.

Implementors