pub struct WebUIElementData {
pub binding_count: u32,
pub event_start: u32,
pub event_count: u32,
}Expand description
WebUI hydration element metadata encoded in plugin fragments.
Fields§
§binding_count: u32Number of dynamic attribute bindings on the element.
event_start: u32Starting event index for this element within the fragment-local event list.
event_count: u32Number of framework event handlers on the element.
Implementations§
Trait Implementations§
Source§impl Clone for WebUIElementData
impl Clone for WebUIElementData
Source§fn clone(&self) -> WebUIElementData
fn clone(&self) -> WebUIElementData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebUIElementData
impl Debug for WebUIElementData
Source§impl PartialEq for WebUIElementData
impl PartialEq for WebUIElementData
impl Copy for WebUIElementData
impl Eq for WebUIElementData
impl StructuralPartialEq for WebUIElementData
Auto Trait Implementations§
impl Freeze for WebUIElementData
impl RefUnwindSafe for WebUIElementData
impl Send for WebUIElementData
impl Sync for WebUIElementData
impl Unpin for WebUIElementData
impl UnsafeUnpin for WebUIElementData
impl UnwindSafe for WebUIElementData
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