pub enum PluginProjectManifestError {
Toml(Error),
Descriptor(PluginDescriptorError),
Catalog(PluginCatalogError),
InvalidField {
field: String,
message: String,
},
DuplicatePackagePath {
path: String,
},
ConflictingPackagePath {
path: String,
conflicting_path: String,
},
AmbiguousArtifactTarget {
transport: &'static str,
target: String,
architecture: String,
},
}Variants§
Toml(Error)
Descriptor(PluginDescriptorError)
Catalog(PluginCatalogError)
InvalidField
DuplicatePackagePath
ConflictingPackagePath
AmbiguousArtifactTarget
Trait Implementations§
Source§impl Debug for PluginProjectManifestError
impl Debug for PluginProjectManifestError
Source§impl Display for PluginProjectManifestError
impl Display for PluginProjectManifestError
Source§impl Error for PluginProjectManifestError
impl Error for PluginProjectManifestError
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()
Source§impl From<Error> for PluginProjectManifestError
impl From<Error> for PluginProjectManifestError
Source§impl From<PluginCatalogError> for PluginProjectManifestError
impl From<PluginCatalogError> for PluginProjectManifestError
Source§fn from(source: PluginCatalogError) -> Self
fn from(source: PluginCatalogError) -> Self
Converts to this type from the input type.
Source§impl From<PluginDescriptorError> for PluginProjectManifestError
impl From<PluginDescriptorError> for PluginProjectManifestError
Source§fn from(source: PluginDescriptorError) -> Self
fn from(source: PluginDescriptorError) -> Self
Converts to this type from the input type.
Source§impl From<PluginProjectManifestError> for PluginPackageError
impl From<PluginProjectManifestError> for PluginPackageError
Source§fn from(source: PluginProjectManifestError) -> Self
fn from(source: PluginProjectManifestError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for PluginProjectManifestError
impl !UnwindSafe for PluginProjectManifestError
impl Freeze for PluginProjectManifestError
impl Send for PluginProjectManifestError
impl Sync for PluginProjectManifestError
impl Unpin for PluginProjectManifestError
impl UnsafeUnpin for PluginProjectManifestError
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