pub struct ProxyCheck {
pub object: Object,
pub id: String,
pub domain_id: String,
pub last_run_at: i64,
pub proxy_url: String,
pub successful: bool,
pub created_at: i64,
pub updated_at: i64,
}Fields§
§object: Object§id: String§domain_id: String§last_run_at: i64§proxy_url: String§successful: bool§created_at: i64§updated_at: i64Implementations§
Trait Implementations§
Source§impl Clone for ProxyCheck
impl Clone for ProxyCheck
Source§fn clone(&self) -> ProxyCheck
fn clone(&self) -> ProxyCheck
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 ProxyCheck
impl Debug for ProxyCheck
Source§impl<'de> Deserialize<'de> for ProxyCheck
impl<'de> Deserialize<'de> for ProxyCheck
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
Source§impl PartialEq for ProxyCheck
impl PartialEq for ProxyCheck
Source§impl Serialize for ProxyCheck
impl Serialize for ProxyCheck
impl StructuralPartialEq for ProxyCheck
Auto Trait Implementations§
impl Freeze for ProxyCheck
impl RefUnwindSafe for ProxyCheck
impl Send for ProxyCheck
impl Sync for ProxyCheck
impl Unpin for ProxyCheck
impl UnwindSafe for ProxyCheck
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