Struct dependency_runner::Executables[][src]

pub struct Executables {
    pub query: LookupQuery,
    // some fields omitted
}

Collection of Executable objects, result of a DLL search

Fields

query: LookupQuery

Query used to generate this data

Implementations

impl Executables[src]

pub fn new(query: LookupQuery) -> Self[src]

pub fn insert(&mut self, lr: Executable)[src]

pub fn get(&self, dllname: &str) -> Option<&Executable>[src]

pub fn contains(&self, dllname: &str) -> bool[src]

pub fn get_root(&self) -> Result<Option<&Executable>, LookupError>[src]

Get the root executable file (i.e. the only one with depth equal to zero)

pub fn sorted_by_first_appearance(&self) -> Vec<&Executable>[src]

pub fn check(&self) -> Result<ExecutablesCheckReport, LookupError>[src]

Check that all referenced DLLs are found, and (if available) that imported symbols are present

Trait Implementations

impl Clone for Executables[src]

impl Debug for Executables[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.