Struct druid::Command

source ·
pub struct Command { /* private fields */ }
Expand description

An arbitrary command.

A Command consists of a Selector, that indicates what the command is and what type of payload it carries, as well as the actual payload.

If the payload can’t or shouldn’t be cloned, wrapping it with SingleUse allows you to take the payload. The SingleUse docs give an example on how to do this.

Generic payloads can be achieved with Selector<Box<dyn Any>>. In this case it could make sense to use utility functions to construct such commands in order to maintain as much static typing as possible. The EventCtx::new_window method is an example of this.

Examples

use druid::{Command, Selector, Target};

let selector = Selector::new("process_rows");
let rows = vec![1, 3, 10, 12];
let command = selector.with(rows);

assert_eq!(command.get(selector), Some(&vec![1, 3, 10, 12]));

Implementations§

source§

impl Command

source

pub fn new<T: Any>( selector: Selector<T>, payload: T, target: impl Into<Target> ) -> Self

Create a new Command with a payload and a Target.

Selector::with should be used to create Commands more conveniently.

If you do not need a payload, Selector implements Into<Command>.

source

pub fn to(self, target: impl Into<Target>) -> Self

Set the Command’s Target.

Command::target can be used to get the current Target.

source

pub fn target(&self) -> Target

Returns the Command’s Target.

Command::to can be used to change the Target.

source

pub fn is<T>(&self, selector: Selector<T>) -> bool

Returns true if self matches this selector.

Examples found in repository?
examples/identity.rs (line 111)
102
103
104
105
106
107
108
109
110
111
112
113
114
    fn event(
        &mut self,
        child: &mut Label<u64>,
        ctx: &mut EventCtx,
        event: &Event,
        data: &mut u64,
        env: &Env,
    ) {
        match event {
            Event::Command(cmd) if cmd.is(INCREMENT) => *data += 1,
            _ => child.event(ctx, event, data, env),
        }
    }
More examples
Hide additional examples
examples/multiwin.rs (line 159)
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
    fn command(
        &mut self,
        ctx: &mut DelegateCtx,
        _target: Target,
        cmd: &Command,
        data: &mut State,
        _env: &Env,
    ) -> Handled {
        if cmd.is(sys_cmds::NEW_FILE) {
            let new_win = WindowDesc::new(ui_builder())
                .menu(make_menu)
                .window_size((data.selected as f64 * 100.0 + 300.0, 500.0));
            ctx.new_window(new_win);
            Handled::Yes
        } else {
            Handled::No
        }
    }
source

pub fn get<T: Any>(&self, selector: Selector<T>) -> Option<&T>

Returns Some(&T) (this Command’s payload) if the selector matches.

Returns None when self.is(selector) == false.

Alternatively you can check the selector with is and then use get_unchecked.

Panics

Panics when the payload has a different type, than what the selector is supposed to carry. This can happen when two selectors with different types but the same key are used.

Examples found in repository?
examples/blocking_function.rs (line 94)
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
    fn command(
        &mut self,
        _ctx: &mut DelegateCtx,
        _target: Target,
        cmd: &Command,
        data: &mut AppState,
        _env: &Env,
    ) -> Handled {
        if let Some(number) = cmd.get(FINISH_SLOW_FUNCTION) {
            // If the command we received is `FINISH_SLOW_FUNCTION` handle the payload.
            data.processing = false;
            data.value = *number;
            Handled::Yes
        } else {
            Handled::No
        }
    }
More examples
Hide additional examples
examples/markdown_preview.rs (line 83)
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
    fn command(
        &mut self,
        _ctx: &mut DelegateCtx,
        _target: Target,
        cmd: &Command,
        _data: &mut T,
        _env: &Env,
    ) -> Handled {
        if let Some(url) = cmd.get(OPEN_LINK) {
            #[cfg(not(target_arch = "wasm32"))]
            open::that_in_background(url);
            #[cfg(target_arch = "wasm32")]
            tracing::warn!("opening link({}) not supported on web yet.", url);
            Handled::Yes
        } else {
            Handled::No
        }
    }
examples/open_save.rs (line 85)
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
    fn command(
        &mut self,
        _ctx: &mut DelegateCtx,
        _target: Target,
        cmd: &Command,
        data: &mut String,
        _env: &Env,
    ) -> Handled {
        if let Some(file_info) = cmd.get(commands::SAVE_FILE_AS) {
            if let Err(e) = std::fs::write(file_info.path(), &data[..]) {
                println!("Error writing file: {e}");
            }
            return Handled::Yes;
        }
        if let Some(file_info) = cmd.get(commands::OPEN_FILE) {
            match std::fs::read_to_string(file_info.path()) {
                Ok(s) => {
                    let first_line = s.lines().next().unwrap_or("");
                    *data = first_line.to_owned();
                }
                Err(e) => {
                    println!("Error opening file: {e}");
                }
            }
            return Handled::Yes;
        }
        Handled::No
    }
source

pub fn get_unchecked<T: Any>(&self, selector: Selector<T>) -> &T

Returns a reference to this Command’s payload.

If the selector has already been checked with is, then get_unchecked can be used safely. Otherwise you should use get instead.

Panics

Panics when self.is(selector) == false.

Panics when the payload has a different type, than what the selector is supposed to carry. This can happen when two selectors with different types but the same key are used.

Trait Implementations§

source§

impl Clone for Command

source§

fn clone(&self) -> Command

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Command

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Selector<()>> for Command

source§

fn from(selector: Selector) -> Command

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Command

§

impl !Send for Command

§

impl !Sync for Command

§

impl Unpin for Command

§

impl !UnwindSafe for Command

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> RoundFrom<T> for T

§

fn round_from(x: T) -> T

Performs the conversion.
§

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

§

fn round_into(self) -> U

Performs the conversion.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more