Struct leptos_use::UseDropZoneOptions
source · pub struct UseDropZoneOptions { /* private fields */ }Expand description
Options for use_drop_zone_with_options.
Implementations§
source§impl UseDropZoneOptions
impl UseDropZoneOptions
sourcepub fn on_drop(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
pub fn on_drop(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
Event handler for the drop event
sourcepub fn on_enter(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
pub fn on_enter(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
Event handler for the dragenter event
sourcepub fn on_leave(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
pub fn on_leave(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
Event handler for the dragleave event
sourcepub fn on_over(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
pub fn on_over(self, value: impl Fn(UseDropZoneEvent) + 'static) -> Self
Event handler for the dragover event
Trait Implementations§
source§impl Clone for UseDropZoneOptions
impl Clone for UseDropZoneOptions
source§fn clone(&self) -> UseDropZoneOptions
fn clone(&self) -> UseDropZoneOptions
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 UseDropZoneOptions
impl Debug for UseDropZoneOptions
Auto Trait Implementations§
impl Freeze for UseDropZoneOptions
impl !RefUnwindSafe for UseDropZoneOptions
impl !Send for UseDropZoneOptions
impl !Sync for UseDropZoneOptions
impl Unpin for UseDropZoneOptions
impl !UnwindSafe for UseDropZoneOptions
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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