Struct rocket_http::uri::Asterisk[][src]

pub struct Asterisk;
Expand description

The literal * URI.

(De)serialization

Asterisk is both Serialize and Deserialize:

use serde::{Serialize, Deserialize};
use rocket::http::uri::Asterisk;

#[derive(Deserialize, Serialize)]
struct UriOwned {
    uri: Asterisk,
}

Implementations

Parses the string string into an Asterisk. Parsing will never allocate. Returns an Error if string is not a valid asterisk URI.

Example

use rocket::http::uri::Asterisk;

assert!(Asterisk::parse("*").is_ok());
assert!(Asterisk::parse("/foo/bar").is_err());

// Prefer to use `uri!()` when the input is statically known:
let uri = uri!("*");
assert_eq!(uri, Asterisk);

Parses the string string into an Asterisk. This is equivalent to Asterisk::parse().

Example

use rocket::http::uri::Asterisk;

assert!(Asterisk::parse_owned("*".to_string()).is_ok());
assert!(Asterisk::parse_owned("/foo/bar".to_string()).is_err());

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

Feeds this value into the given Hasher. Read more

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

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

This method tests for !=.

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

This method tests for !=.

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

This method tests for !=.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Converts self into a collection.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.