pub struct NativeInstallOutput {
pub checksum: Option<Checksum>,
pub error: Option<String>,
pub installed: bool,
pub skip_install: bool,
}
Expand description
Output returned by the native_install
function.
Fields§
§checksum: Option<Checksum>
A checksum/hash that was generated.
error: Option<String>
Error message if the install failed.
installed: bool
Whether the install was successful.
skip_install: bool
Whether to skip the install process or not.
Trait Implementations§
Source§impl Clone for NativeInstallOutput
impl Clone for NativeInstallOutput
Source§fn clone(&self) -> NativeInstallOutput
fn clone(&self) -> NativeInstallOutput
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 NativeInstallOutput
impl Debug for NativeInstallOutput
Source§impl Default for NativeInstallOutput
impl Default for NativeInstallOutput
Source§fn default() -> NativeInstallOutput
fn default() -> NativeInstallOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NativeInstallOutput
impl<'de> Deserialize<'de> for NativeInstallOutput
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
Source§impl PartialEq for NativeInstallOutput
impl PartialEq for NativeInstallOutput
Source§impl Serialize for NativeInstallOutput
impl Serialize for NativeInstallOutput
impl StructuralPartialEq for NativeInstallOutput
Auto Trait Implementations§
impl Freeze for NativeInstallOutput
impl RefUnwindSafe for NativeInstallOutput
impl Send for NativeInstallOutput
impl Sync for NativeInstallOutput
impl Unpin for NativeInstallOutput
impl UnwindSafe for NativeInstallOutput
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