#[non_exhaustive]pub enum JumpListKind {
Automatic,
Custom,
}Expand description
Which Jump List family a JumpList was parsed from.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Automatic
*.automaticDestinations-ms — a CFB compound file with a DestList
MRU stream and one shell-link sub-stream per entry.
Custom
*.customDestinations-ms — flat category list of embedded shell links.
Trait Implementations§
Source§impl Clone for JumpListKind
impl Clone for JumpListKind
Source§fn clone(&self) -> JumpListKind
fn clone(&self) -> JumpListKind
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 moreimpl Copy for JumpListKind
Source§impl Debug for JumpListKind
impl Debug for JumpListKind
impl Eq for JumpListKind
Source§impl PartialEq for JumpListKind
impl PartialEq for JumpListKind
Source§fn eq(&self, other: &JumpListKind) -> bool
fn eq(&self, other: &JumpListKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JumpListKind
Auto Trait Implementations§
impl Freeze for JumpListKind
impl RefUnwindSafe for JumpListKind
impl Send for JumpListKind
impl Sync for JumpListKind
impl Unpin for JumpListKind
impl UnsafeUnpin for JumpListKind
impl UnwindSafe for JumpListKind
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