[go: up one dir, main page]

Command

Struct 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    fn event(
103        &mut self,
104        child: &mut Label<u64>,
105        ctx: &mut EventCtx,
106        event: &Event,
107        data: &mut u64,
108        env: &Env,
109    ) {
110        match event {
111            Event::Command(cmd) if cmd.is(INCREMENT) => *data += 1,
112            _ => child.event(ctx, event, data, env),
113        }
114    }
More examples
Hide additional examples
examples/multiwin.rs (line 159)
151    fn command(
152        &mut self,
153        ctx: &mut DelegateCtx,
154        _target: Target,
155        cmd: &Command,
156        data: &mut State,
157        _env: &Env,
158    ) -> Handled {
159        if cmd.is(sys_cmds::NEW_FILE) {
160            let new_win = WindowDesc::new(ui_builder())
161                .menu(make_menu)
162                .window_size((data.selected as f64 * 100.0 + 300.0, 500.0));
163            ctx.new_window(new_win);
164            Handled::Yes
165        } else {
166            Handled::No
167        }
168    }
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    fn command(
87        &mut self,
88        _ctx: &mut DelegateCtx,
89        _target: Target,
90        cmd: &Command,
91        data: &mut AppState,
92        _env: &Env,
93    ) -> Handled {
94        if let Some(number) = cmd.get(FINISH_SLOW_FUNCTION) {
95            // If the command we received is `FINISH_SLOW_FUNCTION` handle the payload.
96            data.processing = false;
97            data.value = *number;
98            Handled::Yes
99        } else {
100            Handled::No
101        }
102    }
More examples
Hide additional examples
examples/markdown_preview.rs (line 83)
75    fn command(
76        &mut self,
77        _ctx: &mut DelegateCtx,
78        _target: Target,
79        cmd: &Command,
80        _data: &mut T,
81        _env: &Env,
82    ) -> Handled {
83        if let Some(url) = cmd.get(OPEN_LINK) {
84            #[cfg(not(target_arch = "wasm32"))]
85            open::that_in_background(url);
86            #[cfg(target_arch = "wasm32")]
87            tracing::warn!("opening link({}) not supported on web yet.", url);
88            Handled::Yes
89        } else {
90            Handled::No
91        }
92    }
examples/open_save.rs (line 85)
77    fn command(
78        &mut self,
79        _ctx: &mut DelegateCtx,
80        _target: Target,
81        cmd: &Command,
82        data: &mut String,
83        _env: &Env,
84    ) -> Handled {
85        if let Some(file_info) = cmd.get(commands::SAVE_FILE_AS) {
86            if let Err(e) = std::fs::write(file_info.path(), &data[..]) {
87                println!("Error writing file: {e}");
88            }
89            return Handled::Yes;
90        }
91        if let Some(file_info) = cmd.get(commands::OPEN_FILE) {
92            match std::fs::read_to_string(file_info.path()) {
93                Ok(s) => {
94                    let first_line = s.lines().next().unwrap_or("");
95                    *data = first_line.to_owned();
96                }
97                Err(e) => {
98                    println!("Error opening file: {e}");
99                }
100            }
101            return Handled::Yes;
102        }
103        Handled::No
104    }
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 duplicate 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 Freeze for Command

§

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 T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

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 T
where U: From<T>,

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.

Source§

impl<T> RoundFrom<T> for T

Source§

fn round_from(x: T) -> T

Performs the conversion.
Source§

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

Source§

fn round_into(self) -> U

Performs the conversion.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
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