[][src]Struct actix_web::dev::ResourceDef

pub struct ResourceDef { /* fields omitted */ }

Resource type describes an entry in resources table

Methods

impl ResourceDef[src]

pub fn new(path: &str) -> Self[src]

Parse path pattern and create new ResourceDef instance.

Panics if path pattern is wrong.

pub fn prefix(path: &str) -> Self[src]

Parse path pattern and create new ResourceDef instance.

Use prefix type instead of static.

Panics if path regex pattern is wrong.

pub fn external(path: &str) -> Self[src]

Construct external resource def

Panics if path pattern is wrong.

pub fn with_prefix(path: &str, for_prefix: bool, slash: bool) -> Self[src]

Parse path pattern and create new ResourceDef instance with custom prefix

pub fn rtype(&self) -> ResourceType[src]

Resource type

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

Resource name

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

Path pattern of the resource

pub fn is_match(&self, path: &str) -> bool[src]

Is this path a match against this resource?

pub fn match_with_params(&self, req: &Request, plen: usize) -> Option<Params>[src]

Are the given path and parameters a match against this resource?

pub fn match_prefix_with_params(
    &self,
    req: &Request,
    plen: usize
) -> Option<Params>
[src]

Is the given path a prefix match and do the parameters match against this resource?

pub fn resource_path<U, I>(
    &self,
    path: &mut String,
    elements: &mut U
) -> Result<(), UrlGenerationError> where
    U: Iterator<Item = I>,
    I: AsRef<str>, 
[src]

Build resource path.

Trait Implementations

impl PartialEq<ResourceDef> for ResourceDef[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for ResourceDef[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ResourceDef[src]

impl Debug for ResourceDef[src]

impl Hash for ResourceDef[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

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

Auto Trait Implementations

impl !Send for ResourceDef

impl !Sync for ResourceDef

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]