pub enum DragDropData {
Text {
format: Txt,
data: Txt,
},
Path(PathBuf),
Binary {
format: Txt,
data: IpcBytes,
},
}
Expand description
Drag&drop data payload.
Variants§
Text
Text encoded data.
This can be HTML or JSON for example.
Path(PathBuf)
File or directory path.
Binary
Binary encoded data.
This can be an image for example.
Trait Implementations§
source§impl Clone for DragDropData
impl Clone for DragDropData
source§fn clone(&self) -> DragDropData
fn clone(&self) -> DragDropData
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 DragDropData
impl Debug for DragDropData
source§impl<'de> Deserialize<'de> for DragDropData
impl<'de> Deserialize<'de> for DragDropData
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DragDropData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DragDropData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<&'static str> for DragDropData
impl From<&'static str> for DragDropData
source§fn from(plain: &'static str) -> DragDropData
fn from(plain: &'static str) -> DragDropData
Converts to this type from the input type.
source§impl From<PathBuf> for DragDropData
impl From<PathBuf> for DragDropData
source§fn from(path: PathBuf) -> DragDropData
fn from(path: PathBuf) -> DragDropData
Converts to this type from the input type.
source§impl From<String> for DragDropData
impl From<String> for DragDropData
source§fn from(plain: String) -> DragDropData
fn from(plain: String) -> DragDropData
Converts to this type from the input type.
source§impl From<Txt> for DragDropData
impl From<Txt> for DragDropData
source§fn from(plain: Txt) -> DragDropData
fn from(plain: Txt) -> DragDropData
Converts to this type from the input type.
source§impl IntoVar<DragDropData> for &'static str
impl IntoVar<DragDropData> for &'static str
source§fn into_var(self) -> <&'static str as IntoVar<DragDropData>>::Var
fn into_var(self) -> <&'static str as IntoVar<DragDropData>>::Var
Converts the source value into a var.
source§fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>where
Self: Sized,
fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>where
Self: Sized,
Converts into
BoxedVar<T>
. Read moresource§impl IntoVar<DragDropData> for String
impl IntoVar<DragDropData> for String
source§fn into_var(self) -> <String as IntoVar<DragDropData>>::Var
fn into_var(self) -> <String as IntoVar<DragDropData>>::Var
Converts the source value into a var.
source§fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>where
Self: Sized,
fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>where
Self: Sized,
Converts into
BoxedVar<T>
. Read moresource§impl PartialEq for DragDropData
impl PartialEq for DragDropData
source§impl Serialize for DragDropData
impl Serialize for DragDropData
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl IntoValue<DragDropData> for &'static str
impl IntoValue<DragDropData> for String
impl StructuralPartialEq for DragDropData
Auto Trait Implementations§
impl Freeze for DragDropData
impl RefUnwindSafe for DragDropData
impl Send for DragDropData
impl Sync for DragDropData
impl Unpin for DragDropData
impl UnwindSafe for DragDropData
Blanket Implementations§
source§impl<T> AnyVarValue for Twhere
T: VarValue,
impl<T> AnyVarValue for Twhere
T: VarValue,
source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Access to mut
dyn Any
methods.source§fn clone_boxed(&self) -> Box<dyn AnyVarValue>
fn clone_boxed(&self) -> Box<dyn AnyVarValue>
Clone the value.
source§fn clone_boxed_var(&self) -> Box<dyn AnyVar>
fn clone_boxed_var(&self) -> Box<dyn AnyVar>
Clone the value into a new boxed
LocalVar<Self>
.source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
Gets if
self
equals other
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more