pub enum DisplayListError {
UnexpectedLayerEnd {
command: usize,
},
UnclosedLayers {
count: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for DisplayListError
impl Clone for DisplayListError
Source§fn clone(&self) -> DisplayListError
fn clone(&self) -> DisplayListError
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 DisplayListError
Source§impl Debug for DisplayListError
impl Debug for DisplayListError
Source§impl Display for DisplayListError
impl Display for DisplayListError
impl Eq for DisplayListError
Source§impl Error for DisplayListError
impl Error for DisplayListError
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 DisplayListError
impl PartialEq for DisplayListError
impl StructuralPartialEq for DisplayListError
Auto Trait Implementations§
impl Freeze for DisplayListError
impl RefUnwindSafe for DisplayListError
impl Send for DisplayListError
impl Sync for DisplayListError
impl Unpin for DisplayListError
impl UnsafeUnpin for DisplayListError
impl UnwindSafe for DisplayListError
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