[][src]Struct druid::Selector

pub struct Selector<T = ()>(_, _);

An identifier for a particular command.

This should be a unique string identifier. Having multiple selectors with the same identifier but different payload types is not allowed and can cause Command::get and get_unchecked to panic.

The type parameter T specifies the command's payload type. See Command for more information.

Certain Selectors are defined by druid, and have special meaning to the framework; these are listed in the druid::commands module.

Implementations

impl Selector<()>[src]

pub const NOOP: Selector[src]

A selector that does nothing.

pub fn to(self, target: impl Into<Target>) -> Command[src]

Turns this into a command with the specified Target.

impl<T> Selector<T>[src]

pub const fn new(s: &'static str) -> Selector<T>[src]

Create a new Selector with the given string.

impl<T: Any> Selector<T>[src]

pub fn with(self, payload: T) -> Command[src]

Convenience method for Command::new with this selector.

If the payload is () there is no need to call this, as Selector<()> implements Into<Command>.

By default, the command will have Target::Auto. The Command::to method can be used to override this.

Trait Implementations

impl<T> Clone for Selector<T>[src]

impl<T> Copy for Selector<T>[src]

impl<T: Debug> Debug for Selector<T>[src]

impl<T> Display for Selector<T>[src]

impl<T: Eq> Eq for Selector<T>[src]

impl From<Selector<()>> for Command[src]

impl<T: PartialEq> PartialEq<Selector<T>> for Selector<T>[src]

impl<T> StructuralEq for Selector<T>[src]

impl<T> StructuralPartialEq for Selector<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Selector<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Selector<T> where
    T: Send
[src]

impl<T> Sync for Selector<T> where
    T: Sync
[src]

impl<T> Unpin for Selector<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Selector<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AnyEq for T where
    T: PartialEq<T> + Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.