[][src]Struct terminus_store::layer::StringTriple

pub struct StringTriple {
    pub subject: String,
    pub predicate: String,
    pub object: ObjectType,
}

A triple stored as strings.

Fields

subject: Stringpredicate: Stringobject: ObjectType

Implementations

impl StringTriple[src]

pub fn new_node(subject: &str, predicate: &str, object: &str) -> StringTriple[src]

Construct a triple with a node object.

Nodes may appear in both the subject and object position.

pub fn new_value(subject: &str, predicate: &str, object: &str) -> StringTriple[src]

Construct a triple with a value object.

Values may only appear in the object position.

pub fn to_unresolved(&self) -> PartiallyResolvedTriple[src]

Convert this triple to a PartiallyResolvedTriple, marking each field as unresolved.

Trait Implementations

impl Clone for StringTriple[src]

impl Debug for StringTriple[src]

impl Eq for StringTriple[src]

impl Hash for StringTriple[src]

impl Ord for StringTriple[src]

impl PartialEq<StringTriple> for StringTriple[src]

impl PartialOrd<StringTriple> for StringTriple[src]

impl StructuralEq for StringTriple[src]

impl StructuralPartialEq for StringTriple[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>,