Enum show_image::error::GetDeviceError
source · [−]pub enum GetDeviceError {
NoSuitableAdapterFound(NoSuitableAdapterFound),
NoSuitableDeviceFound(RequestDeviceError),
}Expand description
An error occured trying to find a usable graphics device.
Variants
NoSuitableAdapterFound(NoSuitableAdapterFound)
No suitable video adapter was found.
NoSuitableDeviceFound(RequestDeviceError)
No suitable graphics device was found.
Trait Implementations
sourceimpl Clone for GetDeviceError
impl Clone for GetDeviceError
sourcefn clone(&self) -> GetDeviceError
fn clone(&self) -> GetDeviceError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GetDeviceError
impl Debug for GetDeviceError
sourceimpl Display for GetDeviceError
impl Display for GetDeviceError
sourceimpl Error for GetDeviceError
impl Error for GetDeviceError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<GetDeviceError> for CreateWindowError
impl From<GetDeviceError> for CreateWindowError
sourcefn from(other: GetDeviceError) -> Self
fn from(other: GetDeviceError) -> Self
Converts to this type from the input type.
sourceimpl From<NoSuitableAdapterFound> for GetDeviceError
impl From<NoSuitableAdapterFound> for GetDeviceError
sourcefn from(other: NoSuitableAdapterFound) -> Self
fn from(other: NoSuitableAdapterFound) -> Self
Converts to this type from the input type.
sourceimpl From<RequestDeviceError> for GetDeviceError
impl From<RequestDeviceError> for GetDeviceError
sourcefn from(other: RequestDeviceError) -> Self
fn from(other: RequestDeviceError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<GetDeviceError> for GetDeviceError
impl PartialEq<GetDeviceError> for GetDeviceError
sourcefn eq(&self, other: &GetDeviceError) -> bool
fn eq(&self, other: &GetDeviceError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GetDeviceError) -> bool
fn ne(&self, other: &GetDeviceError) -> bool
This method tests for !=.
impl Eq for GetDeviceError
impl StructuralEq for GetDeviceError
impl StructuralPartialEq for GetDeviceError
Auto Trait Implementations
impl RefUnwindSafe for GetDeviceError
impl Send for GetDeviceError
impl Sync for GetDeviceError
impl Unpin for GetDeviceError
impl UnwindSafe for GetDeviceError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more