pub enum UpdateContentMode {
Embed,
Attach,
Omit,
}Expand description
How to handle response content in update mode.
Variants§
Embed
Embed content directly in the HAR file.
Attach
Store large content as separate files.
Omit
Don’t record response body.
Trait Implementations§
Source§impl Clone for UpdateContentMode
impl Clone for UpdateContentMode
Source§fn clone(&self) -> UpdateContentMode
fn clone(&self) -> UpdateContentMode
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 moreSource§impl Debug for UpdateContentMode
impl Debug for UpdateContentMode
Source§impl PartialEq for UpdateContentMode
impl PartialEq for UpdateContentMode
impl Copy for UpdateContentMode
impl Eq for UpdateContentMode
impl StructuralPartialEq for UpdateContentMode
Auto Trait Implementations§
impl Freeze for UpdateContentMode
impl RefUnwindSafe for UpdateContentMode
impl Send for UpdateContentMode
impl Sync for UpdateContentMode
impl Unpin for UpdateContentMode
impl UnwindSafe for UpdateContentMode
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.