pub struct DefaultGuard<A>(/* private fields */);
Expand description
Ignore all events and data updates
This guard should probably not be used for a functional user-interface but may be useful in mock UIs.
Trait Implementations§
Source§impl<A> Clone for DefaultGuard<A>
impl<A> Clone for DefaultGuard<A>
Source§impl<A> Debug for DefaultGuard<A>
impl<A> Debug for DefaultGuard<A>
Source§impl<A> Default for DefaultGuard<A>
impl<A> Default for DefaultGuard<A>
Source§impl<A: 'static> EditGuard for DefaultGuard<A>
impl<A: 'static> EditGuard for DefaultGuard<A>
Source§fn update(edit: &mut EditField<Self>, cx: &mut ConfigCx<'_>, data: &Self::Data)
fn update(edit: &mut EditField<Self>, cx: &mut ConfigCx<'_>, data: &Self::Data)
Update guard Read more
Source§fn activate(
edit: &mut EditField<Self>,
cx: &mut EventCx<'_>,
data: &Self::Data,
) -> IsUsed
fn activate( edit: &mut EditField<Self>, cx: &mut EventCx<'_>, data: &Self::Data, ) -> IsUsed
Activation guard Read more
Source§fn focus_gained(
edit: &mut EditField<Self>,
cx: &mut EventCx<'_>,
data: &Self::Data,
)
fn focus_gained( edit: &mut EditField<Self>, cx: &mut EventCx<'_>, data: &Self::Data, )
Focus-gained guard Read more
Source§impl<A> Hash for DefaultGuard<A>
impl<A> Hash for DefaultGuard<A>
Source§impl<A> PartialEq for DefaultGuard<A>
impl<A> PartialEq for DefaultGuard<A>
impl<A> Copy for DefaultGuard<A>
impl<A> Eq for DefaultGuard<A>
Auto Trait Implementations§
impl<A> Freeze for DefaultGuard<A>
impl<A> RefUnwindSafe for DefaultGuard<A>where
A: RefUnwindSafe,
impl<A> Send for DefaultGuard<A>where
A: Send,
impl<A> Sync for DefaultGuard<A>where
A: Sync,
impl<A> Unpin for DefaultGuard<A>where
A: Unpin,
impl<A> UnwindSafe for DefaultGuard<A>where
A: 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
Source§impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
Source§fn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
Source§fn cast_approx(self) -> T
fn cast_approx(self) -> T
Source§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
Source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
Source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
Source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.