pub struct CompiledRoute {
pub host: Option<Regex>,
pub path: Option<Regex>,
pub path_prefix: Option<String>,
pub upstream_addr: String,
pub protect: bool,
}Fields§
§host: Option<Regex>§path: Option<Regex>§path_prefix: Option<String>§upstream_addr: String§protect: boolAuto Trait Implementations§
impl Freeze for CompiledRoute
impl RefUnwindSafe for CompiledRoute
impl Send for CompiledRoute
impl Sync for CompiledRoute
impl Unpin for CompiledRoute
impl UnwindSafe for CompiledRoute
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more