Struct ate::accessor::Chain[][src]

pub struct Chain { /* fields omitted */ }

Implementations

impl<'a> Chain[src]

pub async fn new(
    builder: ChainOfTrustBuilder,
    key: &ChainKey
) -> Result<Chain, ChainCreationError>
[src]

pub fn key(&'a self) -> ChainKey[src]

pub async fn single(&'a self) -> ChainSingleUser<'a>[src]

pub async fn multi(&'a self) -> ChainMultiUser[src]

pub async fn name(&'a mut self) -> String[src]

pub async fn compact(&'a mut self) -> Result<(), CompactError>[src]

pub async fn count(&'a self) -> usize[src]

pub async fn flush(&'a self) -> Result<(), Error>[src]

pub async fn sync(&'a self) -> Result<(), CommitError>[src]

impl Chain[src]

pub async fn dio<'a>(&'a self, session: &'a Session) -> Dio<'a>[src]

pub async fn dio_ext<'a>(
    &'a self,
    session: &'a Session,
    scope: Scope
) -> Dio<'a>
[src]

Auto Trait Implementations

impl !RefUnwindSafe for Chain

impl Send for Chain

impl Sync for Chain

impl Unpin for Chain

impl !UnwindSafe for Chain

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>,