pub struct NativeOperatorHostToolchainManifest {
pub schema_version: u32,
pub compiler: NativeOperatorToolFileIdentity,
pub compiler_version: String,
pub target: String,
pub executable_inputs: Vec<NativeOperatorToolFileIdentity>,
pub include_roots: Vec<String>,
pub include_probe_sha256: String,
pub driver_probe_sha256: String,
pub discovery_roots: Vec<String>,
pub files: Vec<NativeOperatorHostToolchainFileIdentity>,
}Fields§
§schema_version: u32§compiler: NativeOperatorToolFileIdentity§compiler_version: String§target: String§executable_inputs: Vec<NativeOperatorToolFileIdentity>§include_roots: Vec<String>§include_probe_sha256: String§driver_probe_sha256: String§discovery_roots: Vec<String>§files: Vec<NativeOperatorHostToolchainFileIdentity>Trait Implementations§
Source§impl Clone for NativeOperatorHostToolchainManifest
impl Clone for NativeOperatorHostToolchainManifest
Source§fn clone(&self) -> NativeOperatorHostToolchainManifest
fn clone(&self) -> NativeOperatorHostToolchainManifest
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<'de> Deserialize<'de> for NativeOperatorHostToolchainManifest
impl<'de> Deserialize<'de> for NativeOperatorHostToolchainManifest
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 NativeOperatorHostToolchainManifest
impl StructuralPartialEq for NativeOperatorHostToolchainManifest
Auto Trait Implementations§
impl Freeze for NativeOperatorHostToolchainManifest
impl RefUnwindSafe for NativeOperatorHostToolchainManifest
impl Send for NativeOperatorHostToolchainManifest
impl Sync for NativeOperatorHostToolchainManifest
impl Unpin for NativeOperatorHostToolchainManifest
impl UnsafeUnpin for NativeOperatorHostToolchainManifest
impl UnwindSafe for NativeOperatorHostToolchainManifest
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