pub struct UnsupportedFeatureProfileError {
pub raw_profile: String,
}Expand description
Structured parse error for invalid profile tokens.
Fields§
§raw_profile: StringRaw token that could not be resolved.
Implementations§
Trait Implementations§
Source§impl Error for UnsupportedFeatureProfileError
impl Error for UnsupportedFeatureProfileError
1.30.0 · 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 Freeze for UnsupportedFeatureProfileError
impl RefUnwindSafe for UnsupportedFeatureProfileError
impl Send for UnsupportedFeatureProfileError
impl Sync for UnsupportedFeatureProfileError
impl Unpin for UnsupportedFeatureProfileError
impl UnsafeUnpin for UnsupportedFeatureProfileError
impl UnwindSafe for UnsupportedFeatureProfileError
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