Struct arcdps_imgui::drag_drop::DragDropPayloadPod
source · #[non_exhaustive]pub struct DragDropPayloadPod<T: 'static + Copy> {
pub data: T,
pub preview: bool,
pub delivery: bool,
}
Expand description
A DragDropPayload with status information and some POD, or plain old data, in it.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data: T
The kind data which was requested.
preview: bool
Set when accept_payload
was called
and mouse has been hovering the target item.
delivery: bool
Set when accept_payload
was
called and mouse button is released over the target item.
Trait Implementations§
source§impl<T: Clone + 'static + Copy> Clone for DragDropPayloadPod<T>
impl<T: Clone + 'static + Copy> Clone for DragDropPayloadPod<T>
source§fn clone(&self) -> DragDropPayloadPod<T>
fn clone(&self) -> DragDropPayloadPod<T>
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 moreimpl<T: Copy + 'static + Copy> Copy for DragDropPayloadPod<T>
Auto Trait Implementations§
impl<T> Freeze for DragDropPayloadPod<T>where
T: Freeze,
impl<T> RefUnwindSafe for DragDropPayloadPod<T>where
T: RefUnwindSafe,
impl<T> Send for DragDropPayloadPod<T>where
T: Send,
impl<T> Sync for DragDropPayloadPod<T>where
T: Sync,
impl<T> Unpin for DragDropPayloadPod<T>where
T: Unpin,
impl<T> UnwindSafe for DragDropPayloadPod<T>where
T: UnwindSafe,
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