pub enum NativeOperatorArtifactSetError {
LockMissing(PathBuf),
LockRead {
path: PathBuf,
source: Error,
},
LockJson {
path: PathBuf,
source: Error,
},
LockInvalid(String),
PathEscape(String),
ArtifactResolve {
operator: String,
source: NativeOperatorResolveError,
},
PinMismatch {
operator: String,
field: String,
expected: String,
actual: String,
},
StaticSymbolCollision {
symbol: String,
first: String,
second: String,
},
LinkNameCollision {
link_name: String,
first: String,
second: String,
},
OperationProviderIdentityConflict {
operation_id: String,
provider_id: String,
first: String,
second: String,
},
}Variants§
LockMissing(PathBuf)
LockRead
LockJson
LockInvalid(String)
PathEscape(String)
ArtifactResolve
PinMismatch
StaticSymbolCollision
LinkNameCollision
OperationProviderIdentityConflict
Trait Implementations§
Source§impl Error for NativeOperatorArtifactSetError
impl Error for NativeOperatorArtifactSetError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for NativeOperatorArtifactSetError
impl !UnwindSafe for NativeOperatorArtifactSetError
impl Freeze for NativeOperatorArtifactSetError
impl Send for NativeOperatorArtifactSetError
impl Sync for NativeOperatorArtifactSetError
impl Unpin for NativeOperatorArtifactSetError
impl UnsafeUnpin for NativeOperatorArtifactSetError
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