pub struct TimelineProfile {
pub site: String,
pub url: String,
pub first_seen_ms: u64,
pub last_seen_ms: u64,
pub present_in_latest: bool,
pub last_verdict: Option<MatchKind>,
}Expand description
Per-site lifecycle state in a scan timeline.
Fields§
§site: StringSite name.
url: StringLast known profile URL for the site.
first_seen_ms: u64First scan timestamp where the profile was Found.
last_seen_ms: u64Most recent scan timestamp where the profile was Found.
present_in_latest: boolWhether the profile is Found in the newest scan that mentioned it.
last_verdict: Option<MatchKind>Last verdict observed for this site, if the newest scan mentioned it.
Trait Implementations§
Source§impl Clone for TimelineProfile
impl Clone for TimelineProfile
Source§fn clone(&self) -> TimelineProfile
fn clone(&self) -> TimelineProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TimelineProfile
impl Debug for TimelineProfile
Source§impl<'de> Deserialize<'de> for TimelineProfile
impl<'de> Deserialize<'de> for TimelineProfile
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 TimelineProfile
impl RefUnwindSafe for TimelineProfile
impl Send for TimelineProfile
impl Sync for TimelineProfile
impl Unpin for TimelineProfile
impl UnsafeUnpin for TimelineProfile
impl UnwindSafe for TimelineProfile
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