Struct uriparse::uri::URIReferenceBuilder[][src]

pub struct URIReferenceBuilder<'uri> { /* fields omitted */ }

A builder type for [URIReference].

You must use the URIReference::path function before building as URI references always have have a path. Everything else is optional.

Methods

impl<'uri> URIReferenceBuilder<'uri>
[src]

Important traits for &'a mut R

Sets the authority part of the URI reference.

If the given authority is not a valid authority (i.e. the conversion fails), an error is stored internally and checked during the URIBuilder::build function. The error state will be rewritten for any following calls to this function.

It is optional to specify an authority.

Examples

use uriparse::URIReferenceBuilder;

let mut builder = URIReferenceBuilder::new();
builder.authority(Some("example.com")).path("/my/path");
let reference = builder.build().unwrap();
assert_eq!(reference.to_string(), "//example.com/my/path");

Consumes the builder and tries to build a URIReference.

This function will error in one of three situations:

  • One of the components specified in the builder is invalid.
  • A path was not specified in the builder.
  • While all individual components were valid, their combination as a URI reference was invalid.

Examples

First error type (invalid path):

use uriparse::URIReferenceBuilder;

let mut builder = URIReferenceBuilder::new();
builder.path("this is an invalid path %%%");
assert!(builder.build().is_err());

Second error type (path not specified):

use uriparse::URIReferenceBuilder;

let builder = URIReferenceBuilder::new();
assert!(builder.build().is_err());

Third error type (first segment in schemeless path cannot contain a ':'):

use uriparse::URIReferenceBuilder;

let mut builder = URIReferenceBuilder::new();
builder.path("my:/path");
assert!(builder.build().is_err());

Important traits for &'a mut R

Sets the fragment part of the URI reference.

If the given fragment is not a valid fragment (i.e. the conversion fails), an error is stored internally and checked during the URIReferenceBuilder::build function. The error state will be rewritten for any following calls to this function.

It is optional to specify a fragment.

Examples

use uriparse::URIReferenceBuilder;

let mut builder = URIReferenceBuilder::new();
builder.path("/my/path").fragment(Some("fragment"));
let reference = builder.build().unwrap();
assert_eq!(reference.to_string(), "/my/path#fragment");

Constructs a new builder with nothing set.

Important traits for &'a mut R

Sets the path part of the URI reference.

If the given path is not a valid path (i.e. the conversion fails), an error is stored internally and checked during the URIReferenceBuilder::build function. The error state will be rewritten for any following calls to this function.

It is required to specify an path. Not doing so will result in an error during the URIReferenceBuilder::build function.

Examples

use uriparse::URIReferenceBuilder;

let mut builder = URIReferenceBuilder::new();
builder.path("/my/path");
let reference = builder.build().unwrap();
assert_eq!(reference.to_string(), "/my/path");

Important traits for &'a mut R

Sets the query part of the URI reference.

If the given query is not a valid query (i.e. the conversion fails), an error is stored internally and checked during the URIReferenceBuilder::build function. The error state will be rewritten for any following calls to this function.

It is optional to specify a query.

Examples

use uriparse::URIReferenceBuilder;

let mut builder = URIReferenceBuilder::new();
builder.path("/my/path").query(Some("query"));
let reference = builder.build().unwrap();
assert_eq!(reference.to_string(), "/my/path?query");

Important traits for &'a mut R

Sets the scheme part of the URI reference.

If the given scheme is not a valid scheme (i.e. the conversion fails), an error is stored internally and checked during the URIReferenceBuilder::build function. The error state will be rewritten for any following calls to this function.

It is optional to specify a scheme.

Examples

use uriparse::URIReferenceBuilder;

let mut builder = URIReferenceBuilder::new();
builder.scheme(Some("urn")).path("path");
let uri = builder.build().unwrap();
assert_eq!(uri.to_string(), "urn:path");

Trait Implementations

impl<'uri> Clone for URIReferenceBuilder<'uri>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'uri> Debug for URIReferenceBuilder<'uri>
[src]

Formats the value using the given formatter. Read more

impl<'uri> Default for URIReferenceBuilder<'uri>
[src]

Returns the "default value" for a type. Read more

impl<'uri> Eq for URIReferenceBuilder<'uri>
[src]

impl<'uri> PartialEq for URIReferenceBuilder<'uri>
[src]

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

This method tests for !=.

Auto Trait Implementations

impl<'uri> Send for URIReferenceBuilder<'uri>

impl<'uri> Sync for URIReferenceBuilder<'uri>