pub struct InstalledNativeRuntime {
pub mesh_version: String,
pub native_runtime_id: String,
pub flavor: String,
pub path: PathBuf,
pub manifest: NativeRuntimeManifest,
}Fields§
§mesh_version: String§native_runtime_id: String§flavor: String§path: PathBuf§manifest: NativeRuntimeManifestImplementations§
Source§impl InstalledNativeRuntime
impl InstalledNativeRuntime
Sourcepub fn gpu_benchmark_tool(&self) -> Result<PathBuf>
pub fn gpu_benchmark_tool(&self) -> Result<PathBuf>
Resolve the manifest-verified GPU benchmark helper inside this runtime.
Source§impl InstalledNativeRuntime
impl InstalledNativeRuntime
pub fn load_plan(&self) -> Result<NativeRuntimeLoadPlan>
Trait Implementations§
Source§impl Clone for InstalledNativeRuntime
impl Clone for InstalledNativeRuntime
Source§fn clone(&self) -> InstalledNativeRuntime
fn clone(&self) -> InstalledNativeRuntime
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 InstalledNativeRuntime
impl Debug for InstalledNativeRuntime
Source§impl<'de> Deserialize<'de> for InstalledNativeRuntime
impl<'de> Deserialize<'de> for InstalledNativeRuntime
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 InstalledNativeRuntime
Source§impl PartialEq for InstalledNativeRuntime
impl PartialEq for InstalledNativeRuntime
Source§impl Serialize for InstalledNativeRuntime
impl Serialize for InstalledNativeRuntime
impl StructuralPartialEq for InstalledNativeRuntime
Auto Trait Implementations§
impl Freeze for InstalledNativeRuntime
impl RefUnwindSafe for InstalledNativeRuntime
impl Send for InstalledNativeRuntime
impl Sync for InstalledNativeRuntime
impl Unpin for InstalledNativeRuntime
impl UnsafeUnpin for InstalledNativeRuntime
impl UnwindSafe for InstalledNativeRuntime
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