[][src]Struct rlbot::FrameworkArgs

pub struct FrameworkArgs {
    pub rlbot_version: String,
    pub rlbot_dll_directory: PathBuf,
    pub player_index: i32,
    // some fields omitted
}

The arguments passed by the RLBot framework.

Fields

rlbot_version: String

The version of the RLBot framework used to launch the app. This is the same as the version shown when you run this Python code:

import rlbot
print(rlbot.__version__)
rlbot_dll_directory: PathBuf

The directory containing RLBot_Core_Interface.dll and RLBot_Injector.exe.

player_index: i32

The index of the player you're controlling in the LiveDataPacket::GameCars array.

Trait Implementations

impl From<FrameworkArgs> for InitOptions[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,