Struct ChunkLine
pub struct ChunkLine<'a> { /* private fields */ }icap only.Expand description
A decoded ICAP chunk-size line.
Implementations§
§impl<'a> ChunkLine<'a>
impl<'a> ChunkLine<'a>
pub const fn size(&self) -> u64
pub const fn size(&self) -> u64
Return the chunk data length as a wire-width counter.
Consumers must use checked conversion and checked streaming counters; a declared size larger than the available body is a transaction error.
pub fn size_usize(&self) -> Option<usize>
pub fn size_usize(&self) -> Option<usize>
Convert the chunk data length to a platform index without truncation.
The result must still be checked against the available body length.
pub const fn extensions(&self) -> &ChunkExtensions<'a>
pub const fn extensions(&self) -> &ChunkExtensions<'a>
Return the parsed chunk extensions.
pub fn use_original_body(&self) -> Result<Option<u64>, InvalidChunkLine>
pub fn use_original_body(&self) -> Result<Option<u64>, InvalidChunkLine>
Return the wire-width original body offset of a partial response.
Consumers must use checked conversion and verify the offset against
the retained original body before indexing it. The
use-original-body extension is only valid on the final zero chunk
of a 206 Partial Content response; that response-level rule is
enforced by the message decoder.
pub fn use_original_body_usize(&self) -> Result<Option<usize>, InvalidChunkLine>
pub fn use_original_body_usize(&self) -> Result<Option<usize>, InvalidChunkLine>
Convert the original body offset without truncation.
The result must still be checked against the retained original body.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ChunkLine<'a>
impl<'a> RefUnwindSafe for ChunkLine<'a>
impl<'a> Send for ChunkLine<'a>
impl<'a> Sync for ChunkLine<'a>
impl<'a> Unpin for ChunkLine<'a>
impl<'a> UnsafeUnpin for ChunkLine<'a>
impl<'a> UnwindSafe for ChunkLine<'a>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a rama_grpc::Request§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more