Struct dependency_runner::WindowsSystem[][src]

pub struct WindowsSystem {
    pub safe_dll_search_mode_on: Option<bool>,
    pub known_dlls: Option<Vec<PathBuf>>,
    pub win_dir: PathBuf,
    pub sys_dir: PathBuf,
    pub system_path: Option<Vec<PathBuf>>,
}

Fields

safe_dll_search_mode_on: Option<bool>known_dlls: Option<Vec<PathBuf>>win_dir: PathBufsys_dir: PathBufsystem_path: Option<Vec<PathBuf>>

Implementations

impl WindowsSystem[src]

pub fn from_exe_location<P: AsRef<Path>>(
    p: P
) -> Result<Option<Self>, LookupError>
[src]

pub fn from_root<P: AsRef<Path>>(root_path: P) -> Option<Self>[src]

Trait Implementations

impl Clone for WindowsSystem[src]

impl Debug for WindowsSystem[src]

impl PartialEq<WindowsSystem> for WindowsSystem[src]

Auto Trait Implementations

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.