[][src]Struct iref::Iri

pub struct Iri<'a>(_);

IRI slice.

Wrapper around a borrowed bytes slice representing an IRI. An IRI can be seen as an IRI-reference with a defined Scheme. All methods of IriRef are available from this type, however the scheme method is redefined to always return some scheme.

Example

let iri = Iri::new("https://www.rust-lang.org/foo/bar?query#frag")?;

println!("scheme: {}", iri.scheme()); // note the absence of `unwrap` here since
                                      // the scheme is always defined in an IRI.
println!("authority: {}", iri.authority().unwrap());
println!("path: {}", iri.path());
println!("query: {}", iri.query().unwrap());
println!("fragment: {}", iri.fragment().unwrap());

Implementations

impl<'a> Iri<'a>[src]

pub fn new<S: AsRef<[u8]> + ?Sized>(buffer: &'a S) -> Result<Iri<'a>, Error>[src]

Create a new IRI slice from a bytes slice.

This may fail if the source slice is not UTF-8 encoded, or is not a valid IRI.

pub const fn from_iri_ref(iri_ref: IriRef<'a>) -> Iri<'a>[src]

Build an IRI from an IRI reference.

pub fn as_iri_ref(&self) -> IriRef<'a>[src]

Get an IriRef out of this IRI.

An IRI is always a valid IRI-reference.

pub fn scheme(&self) -> Scheme<'_>[src]

Get the scheme of the IRI.

Contrarily to IriRef, the scheme of an IRI is always defined.

Methods from Deref<Target = IriRef<'a>>

pub fn parsing_data(&self) -> ParsedIriRef[src]

Get the underlying parsing data.

pub fn len(&self) -> usize[src]

Get the length is the IRI-reference, in bytes.

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

Get a reference to the underlying bytes slice representing the IRI-reference.

pub fn as_str(&self) -> &str[src]

Get the IRI-reference as a string slice.

pub fn as_pct_str(&self) -> &PctStr[src]

Get the IRI-reference as a percent-encoded string slice.

pub fn scheme(&self) -> Option<Scheme<'_>>[src]

Get the scheme of the IRI-reference.

The scheme is located at the very begining of the IRI-reference and delimited by an ending :.

Example

assert_eq!(IriRef::new("foo://example.com:8042").unwrap().scheme().unwrap(), "foo");
assert_eq!(IriRef::new("//example.com:8042").unwrap().scheme(), None);

pub fn authority(&self) -> Option<Authority<'_>>[src]

Get the authority of the IRI-reference.

The authority is delimited by the // string, after the scheme.

Example

assert_eq!(IriRef::new("foo://example.com:8042").unwrap().authority().unwrap().host(), "example.com");
assert_eq!(IriRef::new("foo:").unwrap().authority(), None);

pub fn path(&'a self) -> Path<'a>[src]

Get the path of the IRI-reference.

The path is located just after the authority. It is always defined, even if empty.

Example

assert_eq!(IriRef::new("foo:/a/b/c?query").unwrap().path(), "/a/b/c");
assert!(IriRef::new("foo:#fragment").unwrap().path().is_empty());

pub fn query(&self) -> Option<Query<'_>>[src]

Get the query of the IRI-reference.

The query part is delimited by the ? character after the path.

Example

assert_eq!(IriRef::new("//example.org?query").unwrap().query().unwrap(), "query");
assert!(IriRef::new("//example.org/foo/bar#fragment").unwrap().query().is_none());

pub fn fragment(&self) -> Option<Fragment<'_>>[src]

Get the fragment of the IRI-reference.

The fragment part is delimited by the # character after the query.

Example

assert_eq!(IriRef::new("//example.org#foo").unwrap().fragment().unwrap(), "foo");
assert!(IriRef::new("//example.org").unwrap().fragment().is_none());

pub fn resolved<'b, Base: Into<Iri<'b>>>(&self, base_iri: Base) -> IriBuf[src]

Resolve the IRI reference against the given base IRI.

Return the resolved IRI. See the IriRefBuf::resolve method for more informations about the resolution process.

pub fn suffix<'b, Prefix: Into<IriRef<'b>>>(
    &self,
    prefix: Prefix
) -> Option<(PathBuf, Option<Query<'_>>, Option<Fragment<'_>>)>
[src]

Get the suffix of this IRI reference, if any, with regard to the given prefix IRI reference..

Returns Some((suffix, query, fragment)) if this IRI reference is of the form prefix/suffix?query#fragment where prefix is given as parameter. Returns None otherwise. If the suffix scheme or authority is different from this path, it will return None.

See Path::suffix for more details.

pub fn base(&self) -> IriRef<'_>[src]

The IRI reference without the file name, query and fragment.

Example

let a = IriRef::new("https://crates.io/crates/iref?query#fragment").unwrap();
let b = IriRef::new("https://crates.io/crates/iref/?query#fragment").unwrap();
assert_eq!(a.base(), "https://crates.io/crates/");
assert_eq!(b.base(), "https://crates.io/crates/iref/")

pub fn relative_to<'b, Other: Into<IriRef<'b>>>(
    &self,
    other: Other
) -> IriRefBuf
[src]

Get this IRI reference relatively to the given one.

Example

let a = IriRef::new("https://crates.io/").unwrap();
let b = IriRef::new("https://crates.io/crates/iref").unwrap();
let c = IriRef::new("https://crates.io/crates/json-ld").unwrap();
assert_eq!(b.relative_to(a), "crates/iref");
assert_eq!(a.relative_to(b), "https://crates.io/");
assert_eq!(b.relative_to(c), "iref");
assert_eq!(c.relative_to(b), "json-ld");

Trait Implementations

impl<'a> AsIri for Iri<'a>[src]

impl<'a> AsIriRef for Iri<'a>[src]

impl<'a> Clone for Iri<'a>[src]

impl<'a> Copy for Iri<'a>[src]

impl<'a> Debug for Iri<'a>[src]

impl<'a> Deref for Iri<'a>[src]

type Target = IriRef<'a>

The resulting type after dereferencing.

impl<'a> Display for Iri<'a>[src]

impl<'a> Eq for Iri<'a>[src]

impl<'a> From<&'a Iri<'a>> for IriBuf[src]

impl<'a> From<&'a Iri<'a>> for IriRefBuf[src]

impl<'a> From<&'a IriBuf> for Iri<'a>[src]

impl<'a> From<Iri<'a>> for IriBuf[src]

impl<'a> From<Iri<'a>> for IriRefBuf[src]

impl<'a> From<Iri<'a>> for IriRef<'a>[src]

impl<'a> Hash for Iri<'a>[src]

impl<'a> Ord for Iri<'a>[src]

impl<'a> PartialEq<&'a str> for Iri<'a>[src]

impl<'a> PartialEq<Iri<'a>> for IriBuf[src]

impl<'a> PartialEq<Iri<'a>> for Iri<'a>[src]

impl<'a> PartialEq<Iri<'a>> for IriRefBuf[src]

impl<'a> PartialEq<Iri<'a>> for IriRef<'a>[src]

impl<'a> PartialEq<IriBuf> for Iri<'a>[src]

impl<'a> PartialEq<IriRef<'a>> for Iri<'a>[src]

impl<'a> PartialEq<IriRefBuf> for Iri<'a>[src]

impl<'a> PartialOrd<Iri<'a>> for IriBuf[src]

impl<'a> PartialOrd<Iri<'a>> for Iri<'a>[src]

impl<'a> PartialOrd<Iri<'a>> for IriRefBuf[src]

impl<'a> PartialOrd<Iri<'a>> for IriRef<'a>[src]

impl<'a> PartialOrd<IriBuf> for Iri<'a>[src]

impl<'a> PartialOrd<IriRef<'a>> for Iri<'a>[src]

impl<'a> PartialOrd<IriRefBuf> for Iri<'a>[src]

impl<'a> TryFrom<&'a IriRefBuf> for Iri<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'a> TryFrom<IriRef<'a>> for Iri<'a>[src]

type Error = IriRef<'a>

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Iri<'a>

impl<'a> Send for Iri<'a>

impl<'a> Sync for Iri<'a>

impl<'a> Unpin for Iri<'a>

impl<'a> UnwindSafe for Iri<'a>

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<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.