pub enum NativeRuntimeSource {
Installed {
path: PathBuf,
},
Bundle {
path: PathBuf,
},
Download {
url: String,
},
Missing,
}Variants§
Trait Implementations§
Source§impl Clone for NativeRuntimeSource
impl Clone for NativeRuntimeSource
Source§fn clone(&self) -> NativeRuntimeSource
fn clone(&self) -> NativeRuntimeSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NativeRuntimeSource
impl Debug for NativeRuntimeSource
Source§impl<'de> Deserialize<'de> for NativeRuntimeSource
impl<'de> Deserialize<'de> for NativeRuntimeSource
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
impl Eq for NativeRuntimeSource
Source§impl PartialEq for NativeRuntimeSource
impl PartialEq for NativeRuntimeSource
Source§impl Serialize for NativeRuntimeSource
impl Serialize for NativeRuntimeSource
impl StructuralPartialEq for NativeRuntimeSource
Auto Trait Implementations§
impl Freeze for NativeRuntimeSource
impl RefUnwindSafe for NativeRuntimeSource
impl Send for NativeRuntimeSource
impl Sync for NativeRuntimeSource
impl Unpin for NativeRuntimeSource
impl UnsafeUnpin for NativeRuntimeSource
impl UnwindSafe for NativeRuntimeSource
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