Struct axum_core::response::ResponseParts
source · pub struct ResponseParts { /* private fields */ }
Expand description
Parts of a response.
Used with IntoResponseParts
.
Implementations§
source§impl ResponseParts
impl ResponseParts
sourcepub fn headers_mut(&mut self) -> &mut HeaderMap
pub fn headers_mut(&mut self) -> &mut HeaderMap
Gets a mutable reference to the response headers.
sourcepub fn extensions(&self) -> &Extensions
pub fn extensions(&self) -> &Extensions
Gets a reference to the response extensions.
sourcepub fn extensions_mut(&mut self) -> &mut Extensions
pub fn extensions_mut(&mut self) -> &mut Extensions
Gets a mutable reference to the response extensions.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResponseParts
impl !RefUnwindSafe for ResponseParts
impl Send for ResponseParts
impl !Sync for ResponseParts
impl Unpin for ResponseParts
impl !UnwindSafe for ResponseParts
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