Struct arcdps_imgui::drag_drop::PayloadIsWrongType
source · pub struct PayloadIsWrongType { /* private fields */ }
Expand description
Indicates that an incorrect payload type was received. It is opaque,
but you can view useful information with Debug formatting when
debug_assertions
are enabled.
Trait Implementations§
source§impl Clone for PayloadIsWrongType
impl Clone for PayloadIsWrongType
source§fn clone(&self) -> PayloadIsWrongType
fn clone(&self) -> PayloadIsWrongType
Returns a copy 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 PayloadIsWrongType
impl Debug for PayloadIsWrongType
source§impl Display for PayloadIsWrongType
impl Display for PayloadIsWrongType
source§impl Error for PayloadIsWrongType
impl Error for PayloadIsWrongType
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 Ord for PayloadIsWrongType
impl Ord for PayloadIsWrongType
source§fn cmp(&self, other: &PayloadIsWrongType) -> Ordering
fn cmp(&self, other: &PayloadIsWrongType) -> 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 PayloadIsWrongType
impl PartialEq for PayloadIsWrongType
source§fn eq(&self, other: &PayloadIsWrongType) -> bool
fn eq(&self, other: &PayloadIsWrongType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for PayloadIsWrongType
impl PartialOrd for PayloadIsWrongType
source§fn partial_cmp(&self, other: &PayloadIsWrongType) -> Option<Ordering>
fn partial_cmp(&self, other: &PayloadIsWrongType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for PayloadIsWrongType
impl Eq for PayloadIsWrongType
impl StructuralPartialEq for PayloadIsWrongType
Auto Trait Implementations§
impl Freeze for PayloadIsWrongType
impl RefUnwindSafe for PayloadIsWrongType
impl Send for PayloadIsWrongType
impl Sync for PayloadIsWrongType
impl Unpin for PayloadIsWrongType
impl UnwindSafe for PayloadIsWrongType
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