pub struct JumpList {
pub kind: JumpListKind,
pub app_id: Option<String>,
pub entries: Vec<JumpListEntry>,
}Expand description
A parsed Jump List.
Fields§
§kind: JumpListKindWhich family the list came from.
app_id: Option<String>The owning application’s AppID (lowercase hex), when the caller passed
the source filename. Resolve a friendly name with
forensicnomicon::jumplist::appid_name.
entries: Vec<JumpListEntry>The entries, in stream/category order.
Trait Implementations§
impl Eq for JumpList
impl StructuralPartialEq for JumpList
Auto Trait Implementations§
impl Freeze for JumpList
impl RefUnwindSafe for JumpList
impl Send for JumpList
impl Sync for JumpList
impl Unpin for JumpList
impl UnsafeUnpin for JumpList
impl UnwindSafe for JumpList
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