AsyncFactoryVecDequeBuilder

Struct AsyncFactoryVecDequeBuilder 

Source
pub struct AsyncFactoryVecDequeBuilder<C>{ /* private fields */ }
Expand description

A builder-pattern struct for building a AsyncFactoryVecDeque.

Implementations§

Source§

impl<C> AsyncFactoryVecDequeBuilder<C>

Source

pub fn launch_default(self) -> AsyncFactoryVecDequeConnector<C>

Launch the factory with a default parent widget.

Examples found in repository?
relm4/examples/factory_async.rs (line 192)
187    fn init(
188        counter: Self::Init,
189        root: Self::Root,
190        sender: ComponentSender<Self>,
191    ) -> ComponentParts<Self> {
192        let counters = AsyncFactoryVecDeque::builder().launch_default().forward(
193            sender.input_sender(),
194            |output| match output {
195                CounterOutput::SendFront(index) => AppMsg::SendFront(index),
196                CounterOutput::MoveUp(index) => AppMsg::MoveUp(index),
197                CounterOutput::MoveDown(index) => AppMsg::MoveDown(index),
198                CounterOutput::Remove(index) => AppMsg::Remove(index),
199            },
200        );
201
202        let model = App {
203            created_widgets: counter,
204            counters,
205        };
206
207        let counter_box = model.counters.widget();
208        let widgets = view_output!();
209
210        ComponentParts { model, widgets }
211    }
Source§

impl<C> AsyncFactoryVecDequeBuilder<C>

Source

pub fn new() -> Self

Create a builder for this component.

Source

pub fn launch(self, widget: C::ParentWidget) -> AsyncFactoryVecDequeConnector<C>

Launch the factory. This is similar to Connector::launch.

Trait Implementations§

Source§

impl<C> Debug for AsyncFactoryVecDequeBuilder<C>

Source§

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

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

impl<C> Default for AsyncFactoryVecDequeBuilder<C>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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<C> AsyncPosition<()> for C

Source§

fn position(_index: usize)

Returns the position. 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> 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<C, I> Position<(), I> for C

Source§

fn position(&self, _index: &I)

Returns the position. 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