pub struct WidgetComponent {
    pub processor: fn(_: WidgetContext<'_, '_>) -> WidgetNode,
    pub type_name: String,
    pub key: Option<String>,
    pub idref: Option<WidgetRef>,
    pub props: Props,
    pub shared_props: Option<Props>,
    pub listed_slots: Vec<WidgetNode, Global>,
    pub named_slots: HashMap<String, WidgetNode, RandomState>,
}

Fields§

§processor: fn(_: WidgetContext<'_, '_>) -> WidgetNode§type_name: String§key: Option<String>§idref: Option<WidgetRef>§props: Props§shared_props: Option<Props>§listed_slots: Vec<WidgetNode, Global>§named_slots: HashMap<String, WidgetNode, RandomState>

Implementations§

source§

impl WidgetComponent

source

pub fn new( processor: fn(_: WidgetContext<'_, '_>) -> WidgetNode, type_name: &str ) -> WidgetComponent

source

pub fn key<T>(self, v: T) -> WidgetComponentwhere T: ToString,

source

pub fn idref<T>(self, v: T) -> WidgetComponentwhere T: Into<WidgetRef>,

source

pub fn with_props<T>(self, v: T) -> WidgetComponentwhere T: 'static + PropsData,

source

pub fn merge_props(self, v: Props) -> WidgetComponent

source

pub fn with_shared_props<T>(self, v: T) -> WidgetComponentwhere T: 'static + PropsData,

source

pub fn merge_shared_props(self, v: Props) -> WidgetComponent

source

pub fn listed_slot<T>(self, v: T) -> WidgetComponentwhere T: Into<WidgetNode>,

source

pub fn listed_slots<I, T>(self, v: I) -> WidgetComponentwhere I: Iterator<Item = T>, T: Into<WidgetNode>,

source

pub fn named_slot<T>(self, k: &str, v: T) -> WidgetComponentwhere T: Into<WidgetNode>,

source

pub fn named_slots<I, K, T>(self, v: I) -> WidgetComponentwhere I: Iterator<Item = (K, T)>, K: ToString, T: Into<WidgetNode>,

source

pub fn remap_props<F>(&mut self, f: F)where F: FnMut(Props) -> Props,

source

pub fn remap_shared_props<F>(&mut self, f: F)where F: FnMut(Props) -> Props,

Trait Implementations§

source§

impl Clone for WidgetComponent

source§

fn clone(&self) -> WidgetComponent

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 WidgetComponent

source§

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

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

impl From<WidgetComponent> for WidgetNode

source§

fn from(component: WidgetComponent) -> WidgetNode

Converts to this type from the input type.
source§

impl TryFrom<WidgetNode> for WidgetComponent

§

type Error = ()

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

fn try_from( node: WidgetNode ) -> Result<WidgetComponent, <WidgetComponent as TryFrom<WidgetNode>>::Error>

Performs the conversion.

Auto Trait Implementations§

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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, U> Into<U> for Twhere 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> 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.
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.
source§

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

Performs the conversion.
§

impl<T> Component for Twhere T: Send + Sync + 'static,