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

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>

Extracts a string slice containing the entire string.

Examples

Basic usage:

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

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

Returns this String's capacity, in bytes.

Examples

Basic usage:

let s = String::with_capacity(10);

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

Important traits for &'a [u8]

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());

Returns the length of this String, in bytes.

Examples

Basic usage:

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

assert_eq!(a.len(), 3);

Returns true if this String has a length of zero.

Returns false otherwise.

Examples

Basic usage:

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

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

Trait Implementations

impl Clone for IRI
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IRI
[src]

Formats the value using the given formatter. Read more

impl Eq for IRI
[src]

impl PartialEq for IRI
[src]

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

This method tests for !=.

impl Hash for IRI
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialOrd for IRI
[src]

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

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

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

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

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

impl Ord for IRI
[src]

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

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Deref for IRI
[src]

The resulting type after dereferencing.

Dereferences the value.

impl From<IRI> for String
[src]

Performs the conversion.

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

Performs the conversion.

impl From<IRI> for Class
[src]

Performs the conversion.

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

Performs the conversion.

impl From<Class> for IRI
[src]

Performs the conversion.

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

Performs the conversion.

impl From<IRI> for ObjectProperty
[src]

Performs the conversion.

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

Performs the conversion.

impl From<ObjectProperty> for IRI
[src]

Performs the conversion.

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

Performs the conversion.

impl From<IRI> for AnnotationProperty
[src]

Performs the conversion.

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

Performs the conversion.

impl From<AnnotationProperty> for IRI
[src]

Performs the conversion.

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

Performs the conversion.

Auto Trait Implementations

impl !Send for IRI

impl !Sync for IRI