pub struct GroupedDomAttrValues {
pub listeners: Vec<Closure<dyn FnMut(Event)>>,
pub plain_values: Vec<Value>,
pub styles: Vec<Style>,
}
Expand description
a struct where the listeners, plain values, styles and function call values are grouped separately
Fields§
§listeners: Vec<Closure<dyn FnMut(Event)>>
the listeners of the event listeners
plain_values: Vec<Value>
plain attribute values
styles: Vec<Style>
style attribute values
Auto Trait Implementations§
impl Freeze for GroupedDomAttrValues
impl !RefUnwindSafe for GroupedDomAttrValues
impl !Send for GroupedDomAttrValues
impl !Sync for GroupedDomAttrValues
impl Unpin for GroupedDomAttrValues
impl !UnwindSafe for GroupedDomAttrValues
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