[−][src]Struct actix_web::dev::ResourceDef
ResourceDef describes an entry in resources table
Resource definition can contain only 16 dynamic segments
Implementations
impl ResourceDef[src]
pub fn new<T>(path: T) -> ResourceDef where
T: IntoPattern, [src]
T: IntoPattern,
Parse path pattern and create new Pattern instance.
Panics if path pattern is malformed.
pub fn prefix(path: &str) -> ResourceDef[src]
Parse path pattern and create new Pattern instance.
Use prefix type instead of static.
Panics if path regex pattern is malformed.
pub fn root_prefix(path: &str) -> ResourceDef[src]
Parse path pattern and create new Pattern instance.
Inserts / to begging of the pattern.
Use prefix type instead of static.
Panics if path regex pattern is malformed.
pub fn id(&self) -> u16[src]
Resource id
pub fn set_id(&mut self, id: u16)[src]
Set resource id
pub fn name(&self) -> &str[src]
Resource pattern name
pub fn name_mut(&mut self) -> &mut String[src]
Mutable reference to a name of a resource definition.
pub fn pattern(&self) -> &str[src]
Path pattern of the resource
pub fn is_match(&self, path: &str) -> bool[src]
Check if path matchs this pattern?
pub fn is_prefix_match(&self, path: &str) -> Option<usize>[src]
Is prefix path a match against this resource?
pub fn match_path<T>(&self, path: &mut Path<T>) -> bool where
T: ResourcePath, [src]
T: ResourcePath,
Is the given path and parameters a match against this pattern?
pub fn match_path_checked<R, T, F, U>(
&self,
res: &mut R,
check: &F,
user_data: &Option<U>
) -> bool where
F: Fn(&R, &Option<U>) -> bool,
R: Resource<T>,
T: ResourcePath, [src]
&self,
res: &mut R,
check: &F,
user_data: &Option<U>
) -> bool where
F: Fn(&R, &Option<U>) -> bool,
R: Resource<T>,
T: ResourcePath,
Is the given path and parameters a match against this pattern?
pub fn resource_path<U, I>(&self, path: &mut String, elements: &mut U) -> bool where
I: AsRef<str>,
U: Iterator<Item = I>, [src]
I: AsRef<str>,
U: Iterator<Item = I>,
Build resource path from elements. Returns true on success.
pub fn resource_path_named<K, V, S>(
&self,
path: &mut String,
elements: &HashMap<K, V, S>
) -> bool where
K: Borrow<str> + Eq + Hash,
S: BuildHasher,
V: AsRef<str>, [src]
&self,
path: &mut String,
elements: &HashMap<K, V, S>
) -> bool where
K: Borrow<str> + Eq + Hash,
S: BuildHasher,
V: AsRef<str>,
Build resource path from elements. Returns true on success.
Trait Implementations
impl Clone for ResourceDef[src]
fn clone(&self) -> ResourceDef[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ResourceDef[src]
impl Eq for ResourceDef[src]
impl<'a> From<&'a str> for ResourceDef[src]
fn from(path: &'a str) -> ResourceDef[src]
impl From<String> for ResourceDef[src]
fn from(path: String) -> ResourceDef[src]
impl Hash for ResourceDef[src]
fn hash<H>(&self, state: &mut H) where
H: Hasher, [src]
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<ResourceDef> for ResourceDef[src]
Auto Trait Implementations
impl !RefUnwindSafe for ResourceDef
impl Send for ResourceDef
impl Sync for ResourceDef
impl Unpin for ResourceDef
impl UnwindSafe for ResourceDef
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,