pub struct VirtualViewDebugInfo {
pub parent_dom_id: usize,
pub parent_node_id: usize,
pub nested_dom_id: usize,
pub scroll_size_width: Option<f32>,
pub scroll_size_height: Option<f32>,
pub virtual_scroll_size_width: Option<f32>,
pub virtual_scroll_size_height: Option<f32>,
pub was_invoked: bool,
pub last_bounds_x: f32,
pub last_bounds_y: f32,
pub last_bounds_width: f32,
pub last_bounds_height: f32,
}Expand description
Debug info for a single VirtualView, returned by get_all_virtual_view_infos
Fields§
§parent_dom_id: usize§parent_node_id: usize§nested_dom_id: usize§scroll_size_width: Option<f32>§scroll_size_height: Option<f32>§virtual_scroll_size_width: Option<f32>§virtual_scroll_size_height: Option<f32>§was_invoked: bool§last_bounds_x: f32§last_bounds_y: f32§last_bounds_width: f32§last_bounds_height: f32Trait Implementations§
Source§impl Clone for VirtualViewDebugInfo
impl Clone for VirtualViewDebugInfo
Source§fn clone(&self) -> VirtualViewDebugInfo
fn clone(&self) -> VirtualViewDebugInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VirtualViewDebugInfo
impl RefUnwindSafe for VirtualViewDebugInfo
impl Send for VirtualViewDebugInfo
impl Sync for VirtualViewDebugInfo
impl Unpin for VirtualViewDebugInfo
impl UnsafeUnpin for VirtualViewDebugInfo
impl UnwindSafe for VirtualViewDebugInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more