#[non_exhaustive]pub enum TexturePixmapX11Error {
TexturePixmapX11ErrorX11,
}
Expand description
Error codes that can be thrown when performing texture-pixmap-x11 operations.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
TexturePixmapX11ErrorX11
An X11 protocol error
Trait Implementations§
Source§impl Clone for TexturePixmapX11Error
impl Clone for TexturePixmapX11Error
Source§fn clone(&self) -> TexturePixmapX11Error
fn clone(&self) -> TexturePixmapX11Error
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 TexturePixmapX11Error
impl Debug for TexturePixmapX11Error
Source§impl Display for TexturePixmapX11Error
impl Display for TexturePixmapX11Error
Source§impl Hash for TexturePixmapX11Error
impl Hash for TexturePixmapX11Error
Source§impl Ord for TexturePixmapX11Error
impl Ord for TexturePixmapX11Error
Source§fn cmp(&self, other: &TexturePixmapX11Error) -> Ordering
fn cmp(&self, other: &TexturePixmapX11Error) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TexturePixmapX11Error
impl PartialEq for TexturePixmapX11Error
Source§impl PartialOrd for TexturePixmapX11Error
impl PartialOrd for TexturePixmapX11Error
impl Copy for TexturePixmapX11Error
impl Eq for TexturePixmapX11Error
impl StructuralPartialEq for TexturePixmapX11Error
Auto Trait Implementations§
impl Freeze for TexturePixmapX11Error
impl RefUnwindSafe for TexturePixmapX11Error
impl Send for TexturePixmapX11Error
impl Sync for TexturePixmapX11Error
impl Unpin for TexturePixmapX11Error
impl UnwindSafe for TexturePixmapX11Error
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