pub enum RelativeLayoutListenerSignal {
Register(WidgetId),
Unregister,
Change(Vec2, Rect),
}
Variants§
Trait Implementations§
Source§impl Clone for RelativeLayoutListenerSignal
impl Clone for RelativeLayoutListenerSignal
Source§fn clone(&self) -> RelativeLayoutListenerSignal
fn clone(&self) -> RelativeLayoutListenerSignal
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 RelativeLayoutListenerSignal
impl Debug for RelativeLayoutListenerSignal
Source§impl MessageData for RelativeLayoutListenerSignalwhere
RelativeLayoutListenerSignal: Clone,
impl MessageData for RelativeLayoutListenerSignalwhere
RelativeLayoutListenerSignal: Clone,
fn clone_message(&self) -> Box<dyn MessageData>
fn as_any(&self) -> &(dyn Any + 'static)
Source§impl PartialEq for RelativeLayoutListenerSignal
impl PartialEq for RelativeLayoutListenerSignal
Source§fn eq(&self, other: &RelativeLayoutListenerSignal) -> bool
fn eq(&self, other: &RelativeLayoutListenerSignal) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RelativeLayoutListenerSignal
Auto Trait Implementations§
impl Freeze for RelativeLayoutListenerSignal
impl RefUnwindSafe for RelativeLayoutListenerSignal
impl Send for RelativeLayoutListenerSignal
impl Sync for RelativeLayoutListenerSignal
impl Unpin for RelativeLayoutListenerSignal
impl UnwindSafe for RelativeLayoutListenerSignal
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