Skip to main content

Placeable

Struct Placeable 

Source
pub struct Placeable { /* private fields */ }
Expand description

Result of running a measurement pass for a single child.

Concrete struct replacing the former dyn Placeable trait object. This avoids a heap allocation per node per measure pass — the hot coordinator path (16-byte value) now lives entirely on the stack.

Implementations§

Source§

impl Placeable

Source

pub fn value(width: f32, height: f32, node_id: NodeId) -> Self

Creates a pure-value placeable with no side effects on place().

Source

pub fn value_with_offset( width: f32, height: f32, node_id: NodeId, content_offset: (f32, f32), ) -> Self

Creates a pure-value placeable with a content offset.

Source

pub fn with_place_fn( width: f32, height: f32, node_id: NodeId, place_fn: Rc<dyn Fn(f32, f32)>, ) -> Self

Creates a node-backed placeable whose place() triggers a side effect.

Source

pub fn place(&self, x: f32, y: f32)

Places the child at the provided coordinates relative to its parent.

Source

pub fn width(&self) -> f32

Returns the measured width of the child.

Source

pub fn height(&self) -> f32

Returns the measured height of the child.

Source

pub fn node_id(&self) -> NodeId

Returns the identifier for the underlying layout node.

Source

pub fn content_offset(&self) -> (f32, f32)

Returns the accumulated content offset from the coordinator chain.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.