pub struct SafetyTipInfo {
pub safetyTipStatus: SafetyTipStatus,
pub safeUrl: Option<String>,
}Fields§
§safetyTipStatus: SafetyTipStatusDescribes whether the page triggers any safety tips or reputation warnings. Default is unknown.
safeUrl: Option<String>The URL the safety tip suggested (“Did you mean?”). Only filled in for lookalike matches.
Trait Implementations§
Source§impl Clone for SafetyTipInfo
impl Clone for SafetyTipInfo
Source§fn clone(&self) -> SafetyTipInfo
fn clone(&self) -> SafetyTipInfo
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 SafetyTipInfo
impl Debug for SafetyTipInfo
Source§impl Default for SafetyTipInfo
impl Default for SafetyTipInfo
Source§fn default() -> SafetyTipInfo
fn default() -> SafetyTipInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SafetyTipInfo
impl<'de> Deserialize<'de> for SafetyTipInfo
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 SafetyTipInfo
impl RefUnwindSafe for SafetyTipInfo
impl Send for SafetyTipInfo
impl Sync for SafetyTipInfo
impl Unpin for SafetyTipInfo
impl UnsafeUnpin for SafetyTipInfo
impl UnwindSafe for SafetyTipInfo
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