pub enum IconResult {
Found(Icon),
NotFound,
Unsupported,
}Variants§
Trait Implementations§
Source§impl Clone for IconResult
impl Clone for IconResult
Source§fn clone(&self) -> IconResult
fn clone(&self) -> IconResult
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 IconResult
impl Debug for IconResult
Source§impl From<Icon> for IconResult
impl From<Icon> for IconResult
Auto Trait Implementations§
impl !Freeze for IconResult
impl RefUnwindSafe for IconResult
impl Send for IconResult
impl Sync for IconResult
impl Unpin for IconResult
impl UnsafeUnpin for IconResult
impl UnwindSafe for IconResult
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