pub struct DisableAllSimdError {
pub errors: Vec<CompileTimeGuaranteedError>,
}Expand description
Error returned when dangerously_disable_tokens_except_wasm fails to
disable one or more tokens because their features are compile-time enabled.
Contains the individual CompileTimeGuaranteedError for each token that
could not be disabled.
Fields§
§errors: Vec<CompileTimeGuaranteedError>The individual errors for each token that could not be disabled.
Trait Implementations§
Source§impl Clone for DisableAllSimdError
impl Clone for DisableAllSimdError
Source§fn clone(&self) -> DisableAllSimdError
fn clone(&self) -> DisableAllSimdError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DisableAllSimdError
impl Debug for DisableAllSimdError
Source§impl Display for DisableAllSimdError
impl Display for DisableAllSimdError
Source§impl Error for DisableAllSimdError
Available on crate feature std only.
impl Error for DisableAllSimdError
Available on crate feature
std only.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 DisableAllSimdError
impl RefUnwindSafe for DisableAllSimdError
impl Send for DisableAllSimdError
impl Sync for DisableAllSimdError
impl Unpin for DisableAllSimdError
impl UnsafeUnpin for DisableAllSimdError
impl UnwindSafe for DisableAllSimdError
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