pub struct PointerUpAction {
pub type: PointerUpActionType,
pub button: u64,
}Fields§
§type: PointerUpActionTypeImplementations§
Source§impl PointerUpAction
impl PointerUpAction
pub fn builder() -> PointerUpActionBuilder
Source§impl PointerUpAction
impl PointerUpAction
pub const IDENTIFIER: &'static str = "input.PointerUpAction"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for PointerUpAction
impl Clone for PointerUpAction
Source§fn clone(&self) -> PointerUpAction
fn clone(&self) -> PointerUpAction
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 PointerUpAction
impl Debug for PointerUpAction
Source§impl<'de> Deserialize<'de> for PointerUpAction
impl<'de> Deserialize<'de> for PointerUpAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<PointerUpAction> for PointerSourceAction
impl From<PointerUpAction> for PointerSourceAction
Source§fn from(v: PointerUpAction) -> Self
fn from(v: PointerUpAction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PointerUpAction
impl PartialEq for PointerUpAction
Source§impl Serialize for PointerUpAction
impl Serialize for PointerUpAction
Source§impl TryFrom<PointerSourceAction> for PointerUpAction
impl TryFrom<PointerSourceAction> for PointerUpAction
Source§type Error = PointerSourceAction
type Error = PointerSourceAction
The type returned in the event of a conversion error.
impl StructuralPartialEq for PointerUpAction
Auto Trait Implementations§
impl Freeze for PointerUpAction
impl RefUnwindSafe for PointerUpAction
impl Send for PointerUpAction
impl Sync for PointerUpAction
impl Unpin for PointerUpAction
impl UnsafeUnpin for PointerUpAction
impl UnwindSafe for PointerUpAction
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