[][src]Struct terminus_store::store::StoreLayer

pub struct StoreLayer { /* fields omitted */ }

A layer that keeps track of the store it came out of, allowing the creation of a layer builder on top of this layer

Implementations

impl StoreLayer[src]

pub fn open_write(
    &self
) -> impl Future<Item = StoreLayerBuilder, Error = Error> + Send
[src]

Create a layer builder based on this layer

pub fn parent(&self) -> Option<StoreLayer>[src]

pub fn squash(&self) -> impl Future<Item = StoreLayer, Error = Error> + Send[src]

Trait Implementations

impl Clone for StoreLayer[src]

impl Layer for StoreLayer[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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,