[][src]Struct horned_owl::model::IRI

pub struct IRI(_);

An IRI is an internationalized version of an URI/URL.

Here, we represent it as a simple string. In Horned-OWL IRIs are created through Build; this caches the underlying String meaning that IRIs are light-weight to clone.

Methods from Deref<Target = String>

pub fn as_str(&self) -> &str1.7.0[src]

Extracts a string slice containing the entire String.

Examples

Basic usage:

let s = String::from("foo");

assert_eq!("foo", s.as_str());

pub fn capacity(&self) -> usize1.0.0[src]

Returns this String's capacity, in bytes.

Examples

Basic usage:

let s = String::with_capacity(10);

assert!(s.capacity() >= 10);

pub fn as_bytes(&self) -> &[u8]1.0.0[src]

Returns a byte slice of this String's contents.

The inverse of this method is from_utf8.

Examples

Basic usage:

let s = String::from("hello");

assert_eq!(&[104, 101, 108, 108, 111], s.as_bytes());

pub fn len(&self) -> usize1.0.0[src]

Returns the length of this String, in bytes, not chars or graphemes. In other words, it may not be what a human considers the length of the string.

Examples

Basic usage:

let a = String::from("foo");
assert_eq!(a.len(), 3);

let fancy_f = String::from("ƒoo");
assert_eq!(fancy_f.len(), 4);
assert_eq!(fancy_f.chars().count(), 3);

pub fn is_empty(&self) -> bool1.0.0[src]

Returns true if this String has a length of zero, and false otherwise.

Examples

Basic usage:

let mut v = String::new();
assert!(v.is_empty());

v.push('a');
assert!(!v.is_empty());

Trait Implementations

impl AsRef<str> for IRI[src]

impl Clone for IRI[src]

impl Debug for IRI[src]

impl Deref for IRI[src]

type Target = String

The resulting type after dereferencing.

impl Eq for IRI[src]

impl<'_> From<&'_ IRI> for ObjectPropertyExpression[src]

impl<'a> From<&'a AnnotationProperty> for IRI[src]

impl<'a> From<&'a Class> for IRI[src]

impl<'a> From<&'a DataProperty> for IRI[src]

impl<'a> From<&'a Datatype> for IRI[src]

impl<'a> From<&'a IRI> for String[src]

impl<'a> From<&'a IRI> for Class[src]

impl<'a> From<&'a IRI> for Datatype[src]

impl<'a> From<&'a IRI> for ObjectProperty[src]

impl<'a> From<&'a IRI> for DataProperty[src]

impl<'a> From<&'a IRI> for AnnotationProperty[src]

impl<'a> From<&'a IRI> for NamedIndividual[src]

impl<'a> From<&'a NamedIndividual> for IRI[src]

impl<'a> From<&'a ObjectProperty> for IRI[src]

impl From<AnnotationProperty> for IRI[src]

impl From<Class> for IRI[src]

impl From<DataProperty> for IRI[src]

impl From<Datatype> for IRI[src]

impl From<IRI> for String[src]

impl From<IRI> for Class[src]

impl From<IRI> for Datatype[src]

impl From<IRI> for ObjectProperty[src]

impl From<IRI> for DataProperty[src]

impl From<IRI> for AnnotationProperty[src]

impl From<IRI> for NamedIndividual[src]

impl From<IRI> for AnnotationValue[src]

impl From<IRI> for ObjectPropertyExpression[src]

impl From<NamedIndividual> for IRI[src]

impl From<ObjectProperty> for IRI[src]

impl Hash for IRI[src]

impl Ord for IRI[src]

impl PartialEq<IRI> for IRI[src]

impl PartialOrd<IRI> for IRI[src]

impl StructuralEq for IRI[src]

impl StructuralPartialEq for IRI[src]

Auto Trait Implementations

impl !RefUnwindSafe for IRI

impl !Send for IRI

impl !Sync for IRI

impl Unpin for IRI

impl UnwindSafe for IRI

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> TermData for T where
    T: AsRef<str> + Clone + Eq + Hash

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.