pub struct RangedResponse<B> {
pub content_range: Option<ContentRange>,
pub content_length: ContentLength,
pub stream: RangedStream<B>,
}
Expand description
Data type containing computed headers and body for a range response. Implements IntoResponse
.
Fields§
§content_range: Option<ContentRange>
§content_length: ContentLength
§stream: RangedStream<B>
Trait Implementations§
source§impl<B: RangeBody + Send + 'static> IntoResponse for RangedResponse<B>
impl<B: RangeBody + Send + 'static> IntoResponse for RangedResponse<B>
source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl<B> Freeze for RangedResponse<B>where
B: Freeze,
impl<B> RefUnwindSafe for RangedResponse<B>where
B: RefUnwindSafe,
impl<B> Send for RangedResponse<B>where
B: Send,
impl<B> Sync for RangedResponse<B>where
B: Sync,
impl<B> Unpin for RangedResponse<B>where
B: Unpin,
impl<B> UnwindSafe for RangedResponse<B>where
B: UnwindSafe,
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