Struct rdf::triple::Triple [] [src]

pub struct Triple { /* fields omitted */ }

Triple representation.

Methods

impl Triple
[src]

[src]

Constructor for Triple struct.

Requires subject, predicate and object nodes.

Examples

use rdf::triple::Triple;
use rdf::node::Node;
use rdf::uri::Uri;

let subject = Node::BlankNode { id: "a".to_string() };
let predicate = Node::UriNode { uri: Uri::new("http://example.org/show/localName".to_string()) } ;
let object = Node::BlankNode { id: "b".to_string() };

Triple::new(&subject, &predicate, &object);

[src]

Returns a reference to the subject node of the triple.

[src]

Returns a reference to the predicate node of the triple.

[src]

Returns a reference to the object node of the triple.

Trait Implementations

impl PartialOrd for Triple
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Triple
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Clone for Triple
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Triple
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Triple
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Triple
[src]

Auto Trait Implementations

impl Send for Triple

impl Sync for Triple