pub struct NestedInstallerFiles {
pub relative_file_path: Path,
pub portable_command_alias: Option<PortableCommandAlias>,
}Fields§
§relative_file_path: Path§portable_command_alias: Option<PortableCommandAlias>Trait Implementations§
Source§impl Clone for NestedInstallerFiles
impl Clone for NestedInstallerFiles
Source§fn clone(&self) -> NestedInstallerFiles
fn clone(&self) -> NestedInstallerFiles
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 NestedInstallerFiles
impl Debug for NestedInstallerFiles
Source§impl Hash for NestedInstallerFiles
impl Hash for NestedInstallerFiles
Source§impl Ord for NestedInstallerFiles
impl Ord for NestedInstallerFiles
Source§fn cmp(&self, other: &NestedInstallerFiles) -> Ordering
fn cmp(&self, other: &NestedInstallerFiles) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NestedInstallerFiles
impl PartialEq for NestedInstallerFiles
Source§impl PartialOrd for NestedInstallerFiles
impl PartialOrd for NestedInstallerFiles
impl Eq for NestedInstallerFiles
impl StructuralPartialEq for NestedInstallerFiles
Auto Trait Implementations§
impl Freeze for NestedInstallerFiles
impl RefUnwindSafe for NestedInstallerFiles
impl Send for NestedInstallerFiles
impl Sync for NestedInstallerFiles
impl Unpin for NestedInstallerFiles
impl UnwindSafe for NestedInstallerFiles
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more