pub struct DictionaryCodec {
pub use_patterns: bool,
pub min_length: usize,
}Expand description
Dictionary codec using pattern matching
Fields§
§use_patterns: boolEnable pattern matching
min_length: usizeMinimum content length to apply compression
Implementations§
Source§impl DictionaryCodec
impl DictionaryCodec
Sourcepub fn compress(&self, content: &str) -> Result<(String, usize, usize)>
👎Deprecated: Use M2M codec instead
pub fn compress(&self, content: &str) -> Result<(String, usize, usize)>
Compress JSON string using dictionary patterns
DEPRECATED: Use M2M codec instead.
Sourcepub fn decompress(&self, wire: &str) -> Result<String>
pub fn decompress(&self, wire: &str) -> Result<String>
Decompress from wire format
Sourcepub fn compress_value(&self, value: &Value) -> Result<(String, usize, usize)>
👎Deprecated: Use M2M codec instead
pub fn compress_value(&self, value: &Value) -> Result<(String, usize, usize)>
Compress JSON value directly
DEPRECATED: Use M2M codec instead.
Sourcepub fn decompress_value(&self, wire: &str) -> Result<Value>
pub fn decompress_value(&self, wire: &str) -> Result<Value>
Decompress to JSON value
Trait Implementations§
Source§impl Clone for DictionaryCodec
impl Clone for DictionaryCodec
Source§fn clone(&self) -> DictionaryCodec
fn clone(&self) -> DictionaryCodec
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 moreAuto Trait Implementations§
impl Freeze for DictionaryCodec
impl RefUnwindSafe for DictionaryCodec
impl Send for DictionaryCodec
impl Sync for DictionaryCodec
impl Unpin for DictionaryCodec
impl UnwindSafe for DictionaryCodec
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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