pub struct PointerSourceActions {
pub type: PointerSourceActionsType,
pub id: String,
pub parameters: Option<PointerParameters>,
pub actions: Vec<PointerSourceAction>,
}Fields§
§type: PointerSourceActionsType§id: String§parameters: Option<PointerParameters>§actions: Vec<PointerSourceAction>Implementations§
Source§impl PointerSourceActions
impl PointerSourceActions
pub fn builder() -> PointerSourceActionsBuilder
Source§impl PointerSourceActions
impl PointerSourceActions
pub fn new( type: impl Into<PointerSourceActionsType>, id: impl Into<String>, actions: Vec<PointerSourceAction>, ) -> Self
Source§impl PointerSourceActions
impl PointerSourceActions
pub const IDENTIFIER: &'static str = "input.PointerSourceActions"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for PointerSourceActions
impl Clone for PointerSourceActions
Source§fn clone(&self) -> PointerSourceActions
fn clone(&self) -> PointerSourceActions
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 PointerSourceActions
impl Debug for PointerSourceActions
Source§impl<'de> Deserialize<'de> for PointerSourceActions
impl<'de> Deserialize<'de> for PointerSourceActions
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<PointerSourceActions> for SourceActions
impl From<PointerSourceActions> for SourceActions
Source§fn from(v: PointerSourceActions) -> Self
fn from(v: PointerSourceActions) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PointerSourceActions
impl PartialEq for PointerSourceActions
Source§impl Serialize for PointerSourceActions
impl Serialize for PointerSourceActions
Source§impl TryFrom<SourceActions> for PointerSourceActions
impl TryFrom<SourceActions> for PointerSourceActions
Source§type Error = SourceActions
type Error = SourceActions
The type returned in the event of a conversion error.
impl StructuralPartialEq for PointerSourceActions
Auto Trait Implementations§
impl Freeze for PointerSourceActions
impl RefUnwindSafe for PointerSourceActions
impl Send for PointerSourceActions
impl Sync for PointerSourceActions
impl Unpin for PointerSourceActions
impl UnsafeUnpin for PointerSourceActions
impl UnwindSafe for PointerSourceActions
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