pub struct TracingStopOptions {
pub path: Option<String>,
}Expand description
Options for stopping a trace recording.
See: https://playwright.dev/docs/api/class-tracing#tracing-stop
Fields§
§path: Option<String>Path to export the trace file to. If not provided, the trace is discarded.
The file is written as a .zip archive.
Trait Implementations§
Source§impl Clone for TracingStopOptions
impl Clone for TracingStopOptions
Source§fn clone(&self) -> TracingStopOptions
fn clone(&self) -> TracingStopOptions
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 TracingStopOptions
impl Debug for TracingStopOptions
Source§impl Default for TracingStopOptions
impl Default for TracingStopOptions
Source§fn default() -> TracingStopOptions
fn default() -> TracingStopOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TracingStopOptions
impl RefUnwindSafe for TracingStopOptions
impl Send for TracingStopOptions
impl Sync for TracingStopOptions
impl Unpin for TracingStopOptions
impl UnsafeUnpin for TracingStopOptions
impl UnwindSafe for TracingStopOptions
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