pub struct NativeOperatorRuntimeSelection {Show 20 fields
pub schema_version: u32,
pub operator: String,
pub operator_abi_version: String,
pub ferrum_native_abi_version: String,
pub backend: NativeOperatorBackend,
pub compute_capability: Option<String>,
pub linkage: NativeOperatorLinkage,
pub manifest_path: PathBuf,
pub artifact_path: PathBuf,
pub binary_sha256: String,
pub source_package_sha256: String,
pub inputs_sha256: String,
pub g03_catalog_sha256: Option<String>,
pub abi_contract_sha256: Option<String>,
pub descriptor_export: Option<String>,
pub operation_bindings: Vec<NativeOperatorBinding>,
pub artifact_format: NativeOperatorArtifactFormat,
pub archive_members: Vec<String>,
pub required_exports: Vec<String>,
pub matched_exports: Vec<String>,
}Fields§
§schema_version: u32§operator: String§operator_abi_version: String§ferrum_native_abi_version: String§backend: NativeOperatorBackend§compute_capability: Option<String>§linkage: NativeOperatorLinkage§manifest_path: PathBuf§artifact_path: PathBuf§binary_sha256: String§source_package_sha256: String§inputs_sha256: String§g03_catalog_sha256: Option<String>§abi_contract_sha256: Option<String>§descriptor_export: Option<String>§operation_bindings: Vec<NativeOperatorBinding>§artifact_format: NativeOperatorArtifactFormat§archive_members: Vec<String>§required_exports: Vec<String>§matched_exports: Vec<String>Trait Implementations§
Source§impl Clone for NativeOperatorRuntimeSelection
impl Clone for NativeOperatorRuntimeSelection
Source§fn clone(&self) -> NativeOperatorRuntimeSelection
fn clone(&self) -> NativeOperatorRuntimeSelection
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 moreimpl Eq for NativeOperatorRuntimeSelection
impl StructuralPartialEq for NativeOperatorRuntimeSelection
Auto Trait Implementations§
impl Freeze for NativeOperatorRuntimeSelection
impl RefUnwindSafe for NativeOperatorRuntimeSelection
impl Send for NativeOperatorRuntimeSelection
impl Sync for NativeOperatorRuntimeSelection
impl Unpin for NativeOperatorRuntimeSelection
impl UnsafeUnpin for NativeOperatorRuntimeSelection
impl UnwindSafe for NativeOperatorRuntimeSelection
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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