Enum zng_wgt_input::CursorSource
source · pub enum CursorSource {
Icon(CursorIcon),
Img(CursorImg),
Hidden,
}
Expand description
Window cursor source.
Variants§
Icon(CursorIcon)
Platform dependent named cursor icon.
Img(CursorImg)
Custom cursor image, with fallback.
Hidden
Don’t show cursor.
Implementations§
source§impl CursorSource
impl CursorSource
Trait Implementations§
source§impl Clone for CursorSource
impl Clone for CursorSource
source§fn clone(&self) -> CursorSource
fn clone(&self) -> CursorSource
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 CursorSource
impl Debug for CursorSource
source§impl From<CursorIcon> for CursorSource
impl From<CursorIcon> for CursorSource
source§fn from(icon: CursorIcon) -> CursorSource
fn from(icon: CursorIcon) -> CursorSource
Converts to this type from the input type.
source§impl From<CursorImg> for CursorSource
impl From<CursorImg> for CursorSource
source§fn from(img: CursorImg) -> CursorSource
fn from(img: CursorImg) -> CursorSource
Converts to this type from the input type.
source§impl From<bool> for CursorSource
impl From<bool> for CursorSource
source§fn from(default_icon_or_hidden: bool) -> CursorSource
fn from(default_icon_or_hidden: bool) -> CursorSource
Converts true
to CursorIcon::Default
and false
to CursorSource::Hidden
.
source§impl IntoVar<CursorSource> for CursorIcon
impl IntoVar<CursorSource> for CursorIcon
source§fn into_var(self) -> <CursorIcon as IntoVar<CursorSource>>::Var
fn into_var(self) -> <CursorIcon as IntoVar<CursorSource>>::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<CursorSource> for CursorImg
impl IntoVar<CursorSource> for CursorImg
source§fn into_var(self) -> <CursorImg as IntoVar<CursorSource>>::Var
fn into_var(self) -> <CursorImg as IntoVar<CursorSource>>::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 CursorSource
impl PartialEq for CursorSource
impl IntoValue<CursorSource> for CursorIcon
impl IntoValue<CursorSource> for CursorImg
impl StructuralPartialEq for CursorSource
Auto Trait Implementations§
impl Freeze for CursorSource
impl !RefUnwindSafe for CursorSource
impl Send for CursorSource
impl Sync for CursorSource
impl Unpin for CursorSource
impl !UnwindSafe for CursorSource
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