pub enum TargetError {
InvalidKey {
key: String,
},
UnknownTargetKey {
key: String,
},
UnknownTriple {
triple: String,
},
UnknownFilterKey {
key: String,
},
CargoConfig {
path: PathBuf,
source: Error,
},
CargoConfigParse {
path: PathBuf,
source: Error,
},
}Expand description
Failures resolving the target set.
Variants§
Trait Implementations§
Source§impl Debug for TargetError
impl Debug for TargetError
Source§impl Display for TargetError
impl Display for TargetError
Source§impl Error for TargetError
impl Error for TargetError
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<TargetError> for Error
impl From<TargetError> for Error
Source§fn from(error: TargetError) -> Self
fn from(error: TargetError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for TargetError
impl !UnwindSafe for TargetError
impl Freeze for TargetError
impl Send for TargetError
impl Sync for TargetError
impl Unpin for TargetError
impl UnsafeUnpin for TargetError
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