pub struct WebPageDetector {Show 20 fields
pub id: i64,
pub status: i16,
pub name: String,
pub interval: i16,
pub url: String,
pub width: i32,
pub height: i32,
pub user_agent: String,
pub accept_language: String,
pub platform: String,
pub wait_for_element: String,
pub device_scale_factor: f64,
pub timeout: i32,
pub capture_screenshot: bool,
pub capture_element: String,
pub remark: String,
pub regions: Vec<String>,
pub created_by: i64,
pub created: String,
pub modified: String,
}Fields§
§id: i64§status: i16§name: String§interval: i16§url: String§width: i32§height: i32§user_agent: String§accept_language: String§platform: String§wait_for_element: String§device_scale_factor: f64§timeout: i32§capture_screenshot: bool§capture_element: String§remark: String§regions: Vec<String>§created_by: i64§created: String§modified: StringTrait Implementations§
Source§impl Clone for WebPageDetector
impl Clone for WebPageDetector
Source§fn clone(&self) -> WebPageDetector
fn clone(&self) -> WebPageDetector
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 WebPageDetector
impl Debug for WebPageDetector
Source§impl<'de> Deserialize<'de> for WebPageDetector
impl<'de> Deserialize<'de> for WebPageDetector
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WebPageDetector
impl RefUnwindSafe for WebPageDetector
impl Send for WebPageDetector
impl Sync for WebPageDetector
impl Unpin for WebPageDetector
impl UnsafeUnpin for WebPageDetector
impl UnwindSafe for WebPageDetector
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more