#[non_exhaustive]pub enum HarMode {
Full,
Minimal,
}Expand description
Level of detail recorded in a HAR.
See: https://playwright.dev/docs/api/class-tracing#tracing-start-har-option-mode
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Full
Record everything (default).
Minimal
Record only essentials (size, timing) and omit headers/bodies/cookies.
Trait Implementations§
impl Copy for HarMode
impl Eq for HarMode
impl StructuralPartialEq for HarMode
Auto Trait Implementations§
impl Freeze for HarMode
impl RefUnwindSafe for HarMode
impl Send for HarMode
impl Sync for HarMode
impl Unpin for HarMode
impl UnsafeUnpin for HarMode
impl UnwindSafe for HarMode
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