pub struct GroupedAttributeValues<'a, MSG> {
pub listeners: Vec<&'a EventCallback<MSG>>,
pub component_callbacks: Vec<&'a ComponentEventCallback>,
pub plain_values: Vec<&'a Value>,
pub styles: Vec<&'a Style>,
}
Expand description
The Attributes partition into 4 different types
Fields§
§listeners: Vec<&'a EventCallback<MSG>>
the event listeners
component_callbacks: Vec<&'a ComponentEventCallback>
the component event listeners
plain_values: Vec<&'a Value>
plain attribute values
styles: Vec<&'a Style>
style attribute values
Auto Trait Implementations§
impl<'a, MSG> Freeze for GroupedAttributeValues<'a, MSG>
impl<'a, MSG> !RefUnwindSafe for GroupedAttributeValues<'a, MSG>
impl<'a, MSG> !Send for GroupedAttributeValues<'a, MSG>
impl<'a, MSG> !Sync for GroupedAttributeValues<'a, MSG>
impl<'a, MSG> Unpin for GroupedAttributeValues<'a, MSG>
impl<'a, MSG> !UnwindSafe for GroupedAttributeValues<'a, 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