pub struct JumpPoint {
pub timestamp: DateTime<Utc>,
pub jumped_at: DateTime<Utc>,
pub reason: String,
}Expand description
A point in the jump history breadcrumb trail.
Fields§
§timestamp: DateTime<Utc>The timestamp jumped to.
jumped_at: DateTime<Utc>When the jump was made.
reason: StringWhy the jump was made.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JumpPoint
impl<'de> Deserialize<'de> for JumpPoint
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 JumpPoint
impl RefUnwindSafe for JumpPoint
impl Send for JumpPoint
impl Sync for JumpPoint
impl Unpin for JumpPoint
impl UnsafeUnpin for JumpPoint
impl UnwindSafe for JumpPoint
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