pub struct CloudBrowserMonitoringOptions {
pub period: Option<MonitoringPeriod>,
pub proxy_pool: Option<String>,
pub start: Option<String>,
pub end: Option<String>,
}Expand description
Options for the Cloud Browser monitoring endpoints. Cloud Browser is
session-based (one allocation = one long-lived browser, billed by
runtime + bandwidth) and exposes a distinct shape from the
request-based products. There is no domain/target and no
include_webhook.
Fields§
§period: Option<MonitoringPeriod>Pre-defined window. Ignored if start/end are provided.
proxy_pool: Option<String>Optional filter to a single proxy pool (e.g. public_datacenter_pool).
start: Option<String>Custom window start (UTC, YYYY-MM-DD HH:MM:SS). Must be set with end.
end: Option<String>Custom window end (UTC, YYYY-MM-DD HH:MM:SS). Must be set with start.
Trait Implementations§
Source§impl Clone for CloudBrowserMonitoringOptions
impl Clone for CloudBrowserMonitoringOptions
Source§fn clone(&self) -> CloudBrowserMonitoringOptions
fn clone(&self) -> CloudBrowserMonitoringOptions
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 Default for CloudBrowserMonitoringOptions
impl Default for CloudBrowserMonitoringOptions
Source§fn default() -> CloudBrowserMonitoringOptions
fn default() -> CloudBrowserMonitoringOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CloudBrowserMonitoringOptions
impl RefUnwindSafe for CloudBrowserMonitoringOptions
impl Send for CloudBrowserMonitoringOptions
impl Sync for CloudBrowserMonitoringOptions
impl Unpin for CloudBrowserMonitoringOptions
impl UnsafeUnpin for CloudBrowserMonitoringOptions
impl UnwindSafe for CloudBrowserMonitoringOptions
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