pub struct WidgetComponent {
    pub processor: FnWidget,
    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>,
    pub named_slots: HashMap<String, WidgetNode>,
}

Fields§

§processor: FnWidget§type_name: String§key: Option<String>§idref: Option<WidgetRef>§props: Props§shared_props: Option<Props>§listed_slots: Vec<WidgetNode>§named_slots: HashMap<String, WidgetNode>

Implementations§

source§

impl WidgetComponent

source

pub fn new(processor: FnWidget, type_name: impl ToString) -> WidgetComponent

source

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

source

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

source

pub fn maybe_idref<T>(self, v: Option<T>) -> WidgetComponent
where T: Into<WidgetRef>,

source

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

source

pub fn maybe_with_props<T>(self, v: Option<T>) -> WidgetComponent
where T: 'static + PropsData,

source

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

source

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

source

pub fn maybe_with_shared_props<T>(self, v: Option<T>) -> WidgetComponent
where T: 'static + PropsData,

source

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

source

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

source

pub fn maybe_listed_slot<T>(self, v: Option<T>) -> WidgetComponent
where T: Into<WidgetNode>,

source

pub fn listed_slots<I, T>(self, v: I) -> WidgetComponent
where I: IntoIterator<Item = T>, T: Into<WidgetNode>,

source

pub fn named_slot<T>(self, k: impl ToString, v: T) -> WidgetComponent
where T: Into<WidgetNode>,

source

pub fn maybe_named_slot<T>( self, k: impl ToString, v: Option<T> ) -> WidgetComponent
where T: Into<WidgetNode>,

source

pub fn named_slots<I, K, T>(self, v: I) -> WidgetComponent
where I: IntoIterator<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 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
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety 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 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.