pub enum UiResponse {
None,
DragStarted,
}Expand description
The response from Behavior::pane_ui for a pane.
Variants§
Trait Implementations§
Source§impl Clone for UiResponse
impl Clone for UiResponse
Source§fn clone(&self) -> UiResponse
fn clone(&self) -> UiResponse
Returns a duplicate 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 UiResponse
impl Debug for UiResponse
Source§impl Default for UiResponse
impl Default for UiResponse
Source§fn default() -> UiResponse
fn default() -> UiResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for UiResponse
impl PartialEq for UiResponse
impl Copy for UiResponse
impl Eq for UiResponse
impl StructuralPartialEq for UiResponse
Auto Trait Implementations§
impl Freeze for UiResponse
impl RefUnwindSafe for UiResponse
impl Send for UiResponse
impl Sync for UiResponse
impl Unpin for UiResponse
impl UnwindSafe for UiResponse
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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