pub enum ResetDirective {
SessionOnly,
Parameters,
SessionAndParameters,
}Expand description
What kind of context reset should be applied.
Variants§
SessionOnly
Only the session will be reset.
All parameters will be preserved (including the dictionary). But any frame being processed will be dropped.
It can be useful to start re-using a context after an error or when an ongoing compression is no longer needed.
Parameters
Only reset parameters (including dictionary or referenced prefix).
All parameters will be reset to default values.
This can only be done between sessions - no compression or decompression must be ongoing.
SessionAndParameters
Reset both the session and parameters.
The result is similar to a newly created context.
Trait Implementations§
Source§impl Clone for ResetDirective
impl Clone for ResetDirective
Source§fn clone(&self) -> ResetDirective
fn clone(&self) -> ResetDirective
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResetDirective
Source§impl Debug for ResetDirective
impl Debug for ResetDirective
impl Eq for ResetDirective
Source§impl PartialEq for ResetDirective
impl PartialEq for ResetDirective
impl StructuralPartialEq for ResetDirective
Auto Trait Implementations§
impl Freeze for ResetDirective
impl RefUnwindSafe for ResetDirective
impl Send for ResetDirective
impl Sync for ResetDirective
impl Unpin for ResetDirective
impl UnsafeUnpin for ResetDirective
impl UnwindSafe for ResetDirective
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