pub struct Fork {
pub record_id: Option<RecordId>,
pub task: Task,
pub parent_task: Task,
pub time: u64,
}
Expand description
Fields§
§record_id: Option<RecordId>
Record IDs.
task: Task
Task info.
parent_task: Task
Parent task info.
time: u64
Timestamp.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Fork
impl RefUnwindSafe for Fork
impl Send for Fork
impl Sync for Fork
impl Unpin for Fork
impl UnwindSafe for Fork
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