pub struct BrotliCompressor;Available on crate feature
emulation only.Trait Implementations§
Source§impl CertificateCompressor for BrotliCompressor
impl CertificateCompressor for BrotliCompressor
Source§fn compress(&self) -> Codec
fn compress(&self) -> Codec
Returns the
Codec used to compress certificate chains for this algorithm.Source§fn decompress(&self) -> Codec
fn decompress(&self) -> Codec
Returns the
Codec used to decompress certificate chains for this algorithm.Source§fn algorithm(&self) -> CertificateCompressionAlgorithm
fn algorithm(&self) -> CertificateCompressionAlgorithm
Returns the IANA-assigned identifier of the compression algorithm.
Auto Trait Implementations§
impl Freeze for BrotliCompressor
impl RefUnwindSafe for BrotliCompressor
impl Send for BrotliCompressor
impl Sync for BrotliCompressor
impl Unpin for BrotliCompressor
impl UnsafeUnpin for BrotliCompressor
impl UnwindSafe for BrotliCompressor
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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>
Converts
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>
Converts
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