pub struct StatelessModel<MSG> {
pub view: Box<Node<MSG>>,
pub type_id: TypeId,
}
Expand description
Contains necessary information for creating template of the Component of this type_id
Fields§
§view: Box<Node<MSG>>
the view of this stateless model
type_id: TypeId
component type id
Implementations§
Source§impl<MSG> StatelessModel<MSG>
impl<MSG> StatelessModel<MSG>
Sourcepub fn map_msg<F, MSG2>(self, cb: F) -> StatelessModel<MSG2>
pub fn map_msg<F, MSG2>(self, cb: F) -> StatelessModel<MSG2>
mape the msg of this Leaf such that Leaf<MSG>
becomes Leaf<MSG2>
Sourcepub fn attribute_value(
&self,
name: &AttributeName,
) -> Option<Vec<&AttributeValue<MSG>>>
pub fn attribute_value( &self, name: &AttributeName, ) -> Option<Vec<&AttributeValue<MSG>>>
return the attribute values of the view node matching the attribute name name
Sourcepub fn attributes(&self) -> Option<&[Attribute<MSG>]>
pub fn attributes(&self) -> Option<&[Attribute<MSG>]>
Trait Implementations§
Source§impl<MSG> Clone for StatelessModel<MSG>
impl<MSG> Clone for StatelessModel<MSG>
Source§impl<MSG> Debug for StatelessModel<MSG>
impl<MSG> Debug for StatelessModel<MSG>
Source§impl<MSG> PartialEq for StatelessModel<MSG>
impl<MSG> PartialEq for StatelessModel<MSG>
Auto Trait Implementations§
impl<MSG> Freeze for StatelessModel<MSG>
impl<MSG> !RefUnwindSafe for StatelessModel<MSG>
impl<MSG> !Send for StatelessModel<MSG>
impl<MSG> !Sync for StatelessModel<MSG>
impl<MSG> Unpin for StatelessModel<MSG>
impl<MSG> !UnwindSafe for StatelessModel<MSG>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more