[][src]Struct terminus_store::store::sync::SyncNamedGraph

pub struct SyncNamedGraph { /* fields omitted */ }

A named graph in terminus-store.

Named graphs in terminus-store are basically just a label pointing to a layer. Opening a read transaction to a named graph is just getting hold of the layer it points at, as layers are read-only. Writing to a named graph is just making it point to a new layer.

Implementations

impl SyncNamedGraph[src]

pub fn name(&self) -> &str[src]

pub fn head(&self) -> Result<Option<SyncStoreLayer>, Error>[src]

Returns the layer this database points at

pub fn set_head(&self, layer: &SyncStoreLayer) -> Result<bool, Error>[src]

Set the database label to the given layer if it is a valid ancestor, returning false otherwise

pub fn force_set_head(&self, layer: &SyncStoreLayer) -> Result<bool, Error>[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, 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>,