Struct ntriple::Triple [] [src]

pub struct Triple {
    pub subject: Subject,
    pub predicate: Predicate,
    pub object: Object,
}

Represents an RDF statement in the form of a triple.

Fields

The subject part. This can be an IRI or a blank node.

The predicate part. This is an IRI.

The object part. This can be an IRI, a blank node or a literal.

Trait Implementations

impl Debug for Triple
[src]

Formats the value using the given formatter.