pub struct LayoutChild<'a> { /* private fields */ }Expand description
A direct child layout node available during a measure pass.
Implementations§
Source§impl<'a> LayoutChild<'a>
impl<'a> LayoutChild<'a>
Sourcepub fn measure(
&self,
constraint: &Constraint,
) -> Result<MeasuredChild, MeasurementError>
pub fn measure( &self, constraint: &Constraint, ) -> Result<MeasuredChild, MeasurementError>
Measures this child under the given constraint.
Sourcepub fn measure_untracked(
&self,
constraint: &Constraint,
) -> Result<MeasuredChild, MeasurementError>
pub fn measure_untracked( &self, constraint: &Constraint, ) -> Result<MeasuredChild, MeasurementError>
Measures this child without recording it for layout cache keys.
Trait Implementations§
Source§impl<'a> Clone for LayoutChild<'a>
impl<'a> Clone for LayoutChild<'a>
Source§fn clone(&self) -> LayoutChild<'a>
fn clone(&self) -> LayoutChild<'a>
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 Hash for LayoutChild<'_>
impl Hash for LayoutChild<'_>
Source§impl PartialEq for LayoutChild<'_>
impl PartialEq for LayoutChild<'_>
impl<'a> Copy for LayoutChild<'a>
impl Eq for LayoutChild<'_>
impl LayoutPlacementTarget for LayoutChild<'_>
Auto Trait Implementations§
impl<'a> Freeze for LayoutChild<'a>
impl<'a> !RefUnwindSafe for LayoutChild<'a>
impl<'a> !Send for LayoutChild<'a>
impl<'a> !Sync for LayoutChild<'a>
impl<'a> Unpin for LayoutChild<'a>
impl<'a> UnsafeUnpin for LayoutChild<'a>
impl<'a> !UnwindSafe for LayoutChild<'a>
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,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more