Struct actix_router::Path
source · [−]pub struct Path<T> { /* private fields */ }
Expand description
Resource path match information.
If resource path contains variable patterns, Path
stores them.
Implementations
sourceimpl<T: ResourcePath> Path<T>
impl<T: ResourcePath> Path<T>
pub fn new(path: T) -> Path<T>
sourcepub fn segment_count(&self) -> usize
pub fn segment_count(&self) -> usize
Returns number of interpolated segments.
sourcepub fn get(&self, name: &str) -> Option<&str>
pub fn get(&self, name: &str) -> Option<&str>
Get matched parameter by name without type conversion
sourcepub fn unprocessed(&self) -> &str
pub fn unprocessed(&self) -> &str
Get unprocessed part of the path
sourcepub fn query(&self, key: &str) -> &str
pub fn query(&self, key: &str) -> &str
Get matched parameter by name.
If keyed parameter is not available empty string is used as default value.
sourcepub fn load<'de, U: Deserialize<'de>>(&'de self) -> Result<U, Error>
pub fn load<'de, U: Deserialize<'de>>(&'de self) -> Result<U, Error>
Try to deserialize matching parameters to a specified type U
Trait Implementations
sourceimpl<'a, T: ResourcePath> Index<&'a str> for Path<T>
impl<'a, T: ResourcePath> Index<&'a str> for Path<T>
sourceimpl<T: ResourcePath> Index<usize> for Path<T>
impl<T: ResourcePath> Index<usize> for Path<T>
sourceimpl<T: ResourcePath> Resource<T> for Path<T>
impl<T: ResourcePath> Resource<T> for Path<T>
fn resource_path(&mut self) -> &mut Self
Auto Trait Implementations
impl<T> RefUnwindSafe for Path<T> where
T: RefUnwindSafe,
impl<T> Send for Path<T> where
T: Send,
impl<T> Sync for Path<T> where
T: Sync,
impl<T> Unpin for Path<T> where
T: Unpin,
impl<T> UnwindSafe for Path<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more