[][src]Struct hltas::types::Properties

pub struct Properties<'a> {
    pub demo: Option<&'a str>,
    pub save: Option<&'a str>,
    pub frametime_0ms: Option<&'a str>,
    pub seeds: Option<Seeds>,
}

Recognized HLTAS properties.

Fields

demo: Option<&'a str>

Name of the demo to record.

save: Option<&'a str>

Name of the save file to use for saving after the script has finished.

frametime_0ms: Option<&'a str>

Frametime for 0 ms ducktaps.

seeds: Option<Seeds>

RNG seeds.

Trait Implementations

impl<'a> Clone for Properties<'a>[src]

impl<'a> Copy for Properties<'a>[src]

impl<'a> Debug for Properties<'a>[src]

impl<'a> Default for Properties<'a>[src]

impl<'a> Eq for Properties<'a>[src]

impl<'a> PartialEq<Properties<'a>> for Properties<'a>[src]

impl<'a> StructuralEq for Properties<'a>[src]

impl<'a> StructuralPartialEq for Properties<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Properties<'a>

impl<'a> Send for Properties<'a>

impl<'a> Sync for Properties<'a>

impl<'a> Unpin for Properties<'a>

impl<'a> UnwindSafe for Properties<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.