mirror of
https://github.com/fafhrd91/actix-web
synced 2024-12-18 01:43:58 +01:00
49cfabeaf5
Co-authored-by: Rob Ede <robjtede@icloud.com>
40 lines
727 B
Rust
40 lines
727 B
Rust
use crate::Path;
|
|
|
|
// TODO: this trait is necessary, document it
|
|
// see impl Resource for ServiceRequest
|
|
pub trait Resource {
|
|
/// Type of resource's path returned in `resource_path`.
|
|
type Path: ResourcePath;
|
|
|
|
fn resource_path(&mut self) -> &mut Path<Self::Path>;
|
|
}
|
|
|
|
pub trait ResourcePath {
|
|
fn path(&self) -> &str;
|
|
}
|
|
|
|
impl ResourcePath for String {
|
|
fn path(&self) -> &str {
|
|
self.as_str()
|
|
}
|
|
}
|
|
|
|
impl<'a> ResourcePath for &'a str {
|
|
fn path(&self) -> &str {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl ResourcePath for bytestring::ByteString {
|
|
fn path(&self) -> &str {
|
|
&*self
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "http")]
|
|
impl ResourcePath for http::Uri {
|
|
fn path(&self) -> &str {
|
|
self.path()
|
|
}
|
|
}
|