pub enum VisionKitError {
InvalidArgument(String),
UnavailableOnThisMacOS(String),
UnavailableOnThisPlatform(String),
TimedOut(String),
AnalyzerNotSupported(String),
Framework(String),
Unknown(String),
}Variants§
InvalidArgument(String)
TimedOut(String)
AnalyzerNotSupported(String)
Framework(String)
Unknown(String)
Trait Implementations§
Source§impl Clone for VisionKitError
impl Clone for VisionKitError
Source§fn clone(&self) -> VisionKitError
fn clone(&self) -> VisionKitError
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 moreSource§impl Debug for VisionKitError
impl Debug for VisionKitError
Source§impl Display for VisionKitError
impl Display for VisionKitError
Source§impl Error for VisionKitError
impl Error for VisionKitError
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 VisionKitError
impl PartialEq for VisionKitError
Source§fn eq(&self, other: &VisionKitError) -> bool
fn eq(&self, other: &VisionKitError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for VisionKitError
impl StructuralPartialEq for VisionKitError
Auto Trait Implementations§
impl Freeze for VisionKitError
impl RefUnwindSafe for VisionKitError
impl Send for VisionKitError
impl Sync for VisionKitError
impl Unpin for VisionKitError
impl UnsafeUnpin for VisionKitError
impl UnwindSafe for VisionKitError
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