pub struct LayoutQueryRegionProps {
pub layout: LayoutStyle,
pub name: Option<Arc<str>>,
}Expand description
A paint- and input-transparent layout wrapper that records a queryable bounds snapshot.
This is a mechanism-only primitive: breakpoint tables and hysteresis policies live in the component ecosystem (ADR 0066 / ADR 0231).
Fields§
§layout: LayoutStyle§name: Option<Arc<str>>Optional name used for diagnostics and audit readability.
This is not a stable identifier and must not be used for equality.
Trait Implementations§
Source§impl Clone for LayoutQueryRegionProps
impl Clone for LayoutQueryRegionProps
Source§fn clone(&self) -> LayoutQueryRegionProps
fn clone(&self) -> LayoutQueryRegionProps
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 LayoutQueryRegionProps
impl Debug for LayoutQueryRegionProps
Source§impl Default for LayoutQueryRegionProps
impl Default for LayoutQueryRegionProps
Source§fn default() -> LayoutQueryRegionProps
fn default() -> LayoutQueryRegionProps
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LayoutQueryRegionProps
impl RefUnwindSafe for LayoutQueryRegionProps
impl Send for LayoutQueryRegionProps
impl Sync for LayoutQueryRegionProps
impl Unpin for LayoutQueryRegionProps
impl UnsafeUnpin for LayoutQueryRegionProps
impl UnwindSafe for LayoutQueryRegionProps
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