Enum oxigraph::model::Term

source ·
pub enum Term {
    NamedNode(NamedNode),
    BlankNode(BlankNode),
    Literal(Literal),
    Triple(Box<Triple>),
}
Expand description

An owned RDF term It is the union of IRIs, blank nodes, literals and triples (if the rdf-star feature is enabled).

Variants§

§

NamedNode(NamedNode)

§

BlankNode(BlankNode)

§

Literal(Literal)

§

Triple(Box<Triple>)

Implementations§

source§

impl Term

source

pub fn is_named_node(&self) -> bool

source

pub fn is_blank_node(&self) -> bool

source

pub fn is_literal(&self) -> bool

source

pub fn is_triple(&self) -> bool

source

pub fn as_ref(&self) -> TermRef<'_>

Trait Implementations§

source§

impl Clone for Term

source§

fn clone(&self) -> Term

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Term

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Term

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a Term> for TermRef<'a>

source§

fn from(node: &'a Term) -> TermRef<'a>

Converts to this type from the input type.
source§

impl From<BlankNode> for Term

source§

fn from(node: BlankNode) -> Term

Converts to this type from the input type.
source§

impl From<BlankNodeRef<'_>> for Term

source§

fn from(node: BlankNodeRef<'_>) -> Term

Converts to this type from the input type.
source§

impl From<Box<Triple>> for Term

source§

fn from(node: Box<Triple>) -> Term

Converts to this type from the input type.
source§

impl From<Literal> for Term

source§

fn from(literal: Literal) -> Term

Converts to this type from the input type.
source§

impl From<LiteralRef<'_>> for Term

source§

fn from(literal: LiteralRef<'_>) -> Term

Converts to this type from the input type.
source§

impl From<NamedNode> for Term

source§

fn from(node: NamedNode) -> Term

Converts to this type from the input type.
source§

impl From<NamedNodeRef<'_>> for Term

source§

fn from(node: NamedNodeRef<'_>) -> Term

Converts to this type from the input type.
source§

impl From<NamedOrBlankNode> for Term

source§

fn from(node: NamedOrBlankNode) -> Term

Converts to this type from the input type.
source§

impl From<NamedOrBlankNodeRef<'_>> for Term

source§

fn from(node: NamedOrBlankNodeRef<'_>) -> Term

Converts to this type from the input type.
source§

impl From<Subject> for Term

source§

fn from(node: Subject) -> Term

Converts to this type from the input type.
source§

impl From<SubjectRef<'_>> for Term

source§

fn from(node: SubjectRef<'_>) -> Term

Converts to this type from the input type.
source§

impl<'a> From<TermRef<'a>> for Term

source§

fn from(node: TermRef<'a>) -> Term

Converts to this type from the input type.
source§

impl From<Triple> for Term

source§

fn from(triple: Triple) -> Term

Converts to this type from the input type.
source§

impl From<TripleRef<'_>> for Term

source§

fn from(triple: TripleRef<'_>) -> Term

Converts to this type from the input type.
source§

impl FromStr for Term

source§

fn from_str(s: &str) -> Result<Term, TermParseError>

Parses a term from its NTriples or Turtle serialization

use oxrdf::*;
use std::str::FromStr;

assert_eq!(Term::from_str("\"ex\"").unwrap(), Literal::new_simple_literal("ex").into());
assert_eq!(Term::from_str("<< _:s <http://example.com/p> \"o\" >>").unwrap(), Triple::new(
    BlankNode::new("s").unwrap(),
    NamedNode::new("http://example.com/p").unwrap(),
    Literal::new_simple_literal("o")
).into());
§

type Err = TermParseError

The associated error which can be returned from parsing.
source§

impl Hash for Term

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Term

source§

fn eq(&self, other: &Term) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<TermPattern> for Term

§

type Error = ()

The type returned in the event of a conversion error.
source§

fn try_from(pattern: TermPattern) -> Result<Term, ()>

Performs the conversion.
source§

impl Eq for Term

source§

impl StructuralEq for Term

source§

impl StructuralPartialEq for Term

Auto Trait Implementations§

§

impl RefUnwindSafe for Term

§

impl Send for Term

§

impl Sync for Term

§

impl Unpin for Term

§

impl UnwindSafe for Term

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V