pub struct InnerContext { /* private fields */ }Implementations§
Source§impl InnerContext
impl InnerContext
pub fn get_aborted(&self) -> &bool
pub fn get_mut_aborted(&mut self) -> &mut bool
pub fn set_aborted(&mut self, val: bool) -> &mut Self
pub fn get_closed(&self) -> &bool
pub fn get_mut_closed(&mut self) -> &mut bool
pub fn set_closed(&mut self, val: bool) -> &mut Self
pub fn get_stream(&self) -> &OptionArcRwLockStream
pub fn get_mut_stream(&mut self) -> &mut OptionArcRwLockStream
pub fn set_stream(&mut self, val: OptionArcRwLockStream) -> &mut Self
pub fn get_request(&self) -> &Request
pub fn get_mut_request(&mut self) -> &mut Request
pub fn set_request(&mut self, val: Request) -> &mut Self
pub fn get_response(&self) -> &Response
pub fn get_mut_response(&mut self) -> &mut Response
pub fn set_response(&mut self, val: Response) -> &mut Self
pub fn get_attributes(&self) -> &HashMapArcAnySendSync
pub fn get_mut_attributes(&mut self) -> &mut HashMapArcAnySendSync
pub fn set_attributes(&mut self, val: HashMapArcAnySendSync) -> &mut Self
pub fn get_route_params(&self) -> &RouteParams
pub fn get_mut_route_params(&mut self) -> &mut RouteParams
pub fn set_route_params(&mut self, val: RouteParams) -> &mut Self
Trait Implementations§
Source§impl Clone for InnerContext
impl Clone for InnerContext
Source§fn clone(&self) -> InnerContext
fn clone(&self) -> InnerContext
Returns a duplicate 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 Default for InnerContext
impl Default for InnerContext
Source§fn default() -> InnerContext
fn default() -> InnerContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InnerContext
impl !RefUnwindSafe for InnerContext
impl Send for InnerContext
impl Sync for InnerContext
impl Unpin for InnerContext
impl !UnwindSafe for InnerContext
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