AnalyzerResult

Struct AnalyzerResult 

Source
pub struct AnalyzerResult {
    pub final_time: FinalTime,
    pub estimated_time: Decimal,
    pub frametime_stats: Vec<FrametimeStats>,
    pub save_count: BigUint,
    pub shared_seed_set_count: BigUint,
    pub button_set_count: BigUint,
    pub lgagst_min_speed_set_count: BigUint,
    pub reset_count: BigUint,
    pub comment_count: BigUint,
    pub change_angle_count: BigUint,
    pub target_yaw_override_count: BigUint,
}
Expand description

Analysis result of a HLTAS.

Fields§

§final_time: FinalTime

The final time of the HLTAS.

  • start will be the shortest possible time of the hltas, assuming all 0ms ducktap framebulks are 0ms.
  • end will be the longest possible time of the hltas, assuming all 0ms ducktap framebulks aren’t 0ms.
§estimated_time: Decimal

The estimated time of the HLTAS. Assumes the 0ms ducktap framebulks are landing on a flat ground, with normal gravity.

§frametime_stats: Vec<FrametimeStats>

The frametime stats of the HLTAS, containing frametime and total frame_count.

§save_count: BigUint

The number of save special frames in the HLTAS.

§shared_seed_set_count: BigUint

The number of shared_seed sets in the HLTAS.

§button_set_count: BigUint

The number of strafing button mapping in the HLTAS, including resetting.

§lgagst_min_speed_set_count: BigUint

The number of lgagst_min_speed sets in the HLTAS.

§reset_count: BigUint

The number of reset done in the HLTAS.

§comment_count: BigUint

The number of comment in the HLTAS.

§change_angle_count: BigUint

The number of change in the HLTAS.

§target_yaw_override_count: BigUint

The number of target_yaw_override in the HLTAS.

Trait Implementations§

Source§

impl Clone for AnalyzerResult

Source§

fn clone(&self) -> AnalyzerResult

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AnalyzerResult

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for AnalyzerResult

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for AnalyzerResult

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for AnalyzerResult

Source§

fn eq(&self, other: &AnalyzerResult) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for AnalyzerResult

Source§

impl StructuralPartialEq for AnalyzerResult

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.