Struct dependency_runner::Executables [−][src]
Collection of Executable objects, result of a DLL search
Fields
query: LookupQueryQuery 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]
fn clone(&self) -> Executables[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for Executables[src]
Auto Trait Implementations
impl RefUnwindSafe for Executables
impl Send for Executables
impl Sync for Executables
impl Unpin for Executables
impl UnwindSafe for Executables
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,