[][src]Struct rlbot::InitOptions

pub struct InitOptions { /* fields omitted */ }

Options for customizing the way the framework is initialized.

Methods

impl InitOptions[src]

pub fn new() -> Self[src]

Constructs a new InitOptions.

pub fn rlbot_dll_directory(
    self,
    rlbot_dll_directory: impl Into<PathBuf>
) -> Self
[src]

Sets the directory in which to search for the RLBot DLLs.

This should be set to the directory containing these files. If this not set, the system's standard DLL search order will be used.

Trait Implementations

impl From<FrameworkArgs> for InitOptions[src]

impl Default for InitOptions[src]

Auto Trait Implementations

impl Send for InitOptions

impl Sync for InitOptions

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>,