Struct gotham::handler::DirHandler
source · pub struct DirHandler { /* private fields */ }
Expand description
Represents a handler for any files under a directory.
Implementations§
source§impl DirHandler
impl DirHandler
sourcepub fn new<P>(path: P) -> DirHandlerwhere
FileOptions: From<P>,
pub fn new<P>(path: P) -> DirHandlerwhere
FileOptions: From<P>,
Create a new DirHandler
with the given root path.
Trait Implementations§
source§impl Clone for DirHandler
impl Clone for DirHandler
source§fn clone(&self) -> DirHandler
fn clone(&self) -> DirHandler
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Handler for DirHandler
impl Handler for DirHandler
source§impl NewHandler for DirHandler
impl NewHandler for DirHandler
§type Instance = DirHandler
type Instance = DirHandler
The type of
Handler
created by the NewHandler
.source§fn new_handler(&self) -> Result<Self::Instance>
fn new_handler(&self) -> Result<Self::Instance>
Create and return a new
Handler
value.