pub struct NativeOperatorArtifactSetLock {
pub schema_version: u32,
pub g03_catalog_sha256: String,
pub artifacts: Vec<NativeOperatorArtifactLock>,
}Fields§
§schema_version: u32§g03_catalog_sha256: String§artifacts: Vec<NativeOperatorArtifactLock>Implementations§
Source§impl NativeOperatorArtifactSetLock
impl NativeOperatorArtifactSetLock
pub fn load_and_resolve( lock_path: impl AsRef<Path>, compute_capability: Option<&str>, ) -> Result<ResolvedNativeOperatorArtifactSet, NativeOperatorArtifactSetError>
pub fn resolve( &self, lock_path: impl AsRef<Path>, compute_capability: Option<&str>, ) -> Result<ResolvedNativeOperatorArtifactSet, NativeOperatorArtifactSetError>
Trait Implementations§
Source§impl Clone for NativeOperatorArtifactSetLock
impl Clone for NativeOperatorArtifactSetLock
Source§fn clone(&self) -> NativeOperatorArtifactSetLock
fn clone(&self) -> NativeOperatorArtifactSetLock
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 NativeOperatorArtifactSetLock
impl<'de> Deserialize<'de> for NativeOperatorArtifactSetLock
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 NativeOperatorArtifactSetLock
impl StructuralPartialEq for NativeOperatorArtifactSetLock
Auto Trait Implementations§
impl Freeze for NativeOperatorArtifactSetLock
impl RefUnwindSafe for NativeOperatorArtifactSetLock
impl Send for NativeOperatorArtifactSetLock
impl Sync for NativeOperatorArtifactSetLock
impl Unpin for NativeOperatorArtifactSetLock
impl UnsafeUnpin for NativeOperatorArtifactSetLock
impl UnwindSafe for NativeOperatorArtifactSetLock
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