pub enum WarpPlanError {
InvalidShape,
SizeOverflow,
Unsupported(&'static str),
}Variants§
Trait Implementations§
Source§impl Clone for WarpPlanError
impl Clone for WarpPlanError
Source§fn clone(&self) -> WarpPlanError
fn clone(&self) -> WarpPlanError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WarpPlanError
Source§impl Debug for WarpPlanError
impl Debug for WarpPlanError
Source§impl Display for WarpPlanError
impl Display for WarpPlanError
impl Eq for WarpPlanError
Source§impl Error for WarpPlanError
impl Error for WarpPlanError
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()
Source§impl PartialEq for WarpPlanError
impl PartialEq for WarpPlanError
impl StructuralPartialEq for WarpPlanError
Auto Trait Implementations§
impl Freeze for WarpPlanError
impl RefUnwindSafe for WarpPlanError
impl Send for WarpPlanError
impl Sync for WarpPlanError
impl Unpin for WarpPlanError
impl UnsafeUnpin for WarpPlanError
impl UnwindSafe for WarpPlanError
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