pub struct ExtractedExecutable {
pub name: String,
pub path: String,
pub full_path: String,
pub is_primary: bool,
}Expand description
Information about an extracted executable from an archive
Fields§
§name: StringName of the executable (without extension)
path: StringRelative path within the extracted archive
full_path: StringFull path to the executable
is_primary: boolWhether this executable is the primary one for this shim
Trait Implementations§
Source§impl Clone for ExtractedExecutable
impl Clone for ExtractedExecutable
Source§fn clone(&self) -> ExtractedExecutable
fn clone(&self) -> ExtractedExecutable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtractedExecutable
impl Debug for ExtractedExecutable
Source§impl<'de> Deserialize<'de> for ExtractedExecutable
impl<'de> Deserialize<'de> for ExtractedExecutable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExtractedExecutable
impl RefUnwindSafe for ExtractedExecutable
impl Send for ExtractedExecutable
impl Sync for ExtractedExecutable
impl Unpin for ExtractedExecutable
impl UnwindSafe for ExtractedExecutable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more