#[repr(i32)]pub enum ProgressStep {
ResolvingVersion = 0,
LoadingBuildConfig = 1,
LoadingCdnConfig = 2,
LoadingIndexFiles = 3,
MappingArchives = 4,
LoadingArchiveIndexes = 5,
LoadingEncodingTable = 6,
LoadingVfsManifests = 7,
LoadingRootManifest = 8,
Ready = 9,
}Expand description
Stage of the open sequence an event belongs to.
Variants§
ResolvingVersion = 0
Online: versions/cdns endpoint lookup.
LoadingBuildConfig = 1
Build config (fetch or disk read + parse).
LoadingCdnConfig = 2
CDN config (fetch or disk read + parse).
LoadingIndexFiles = 3
Local .idx bucket files.
MappingArchives = 4
Local data.NNN archives being memory-mapped.
LoadingArchiveIndexes = 5
Online: per-archive .index fetches.
LoadingEncodingTable = 6
ENCODING manifest decode + parse.
LoadingVfsManifests = 7
TVFS sub-manifests (~870 on WoW retail).
LoadingRootManifest = 8
ROOT manifest decode + parse.
Ready = 9
Storage is usable. Always the final event.
Implementations§
Trait Implementations§
Source§impl Clone for ProgressStep
impl Clone for ProgressStep
Source§fn clone(&self) -> ProgressStep
fn clone(&self) -> ProgressStep
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 ProgressStep
Source§impl Debug for ProgressStep
impl Debug for ProgressStep
impl Eq for ProgressStep
Source§impl Hash for ProgressStep
impl Hash for ProgressStep
Source§impl PartialEq for ProgressStep
impl PartialEq for ProgressStep
impl StructuralPartialEq for ProgressStep
Auto Trait Implementations§
impl Freeze for ProgressStep
impl RefUnwindSafe for ProgressStep
impl Send for ProgressStep
impl Sync for ProgressStep
impl Unpin for ProgressStep
impl UnsafeUnpin for ProgressStep
impl UnwindSafe for ProgressStep
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