Struct kas_core::layout::SingleSetter
source · [−]pub struct SingleSetter { /* private fields */ }Expand description
RulesSetter implementation for a fixed single-child layout
Implementations
sourceimpl SingleSetter
impl SingleSetter
sourcepub fn new(rect: Rect, _dim: (), _align: AlignHints, _storage: &mut ()) -> Self
pub fn new(rect: Rect, _dim: (), _align: AlignHints, _storage: &mut ()) -> Self
Construct
Argument order is consistent with other RulesSetters.
rect: theRectwithin which to position children_dim: unused_align: unused_storage: unused
Trait Implementations
sourceimpl RulesSetter for SingleSetter
impl RulesSetter for SingleSetter
type ChildInfo = ()
type ChildInfo = ()
Type required by RulesSolver::for_child (see implementation documentation)
sourcefn child_rect(&mut self, _: &mut Self::Storage, _: Self::ChildInfo) -> Rect
fn child_rect(&mut self, _: &mut Self::Storage, _: Self::ChildInfo) -> Rect
Called once for each child. The order is unimportant.
Auto Trait Implementations
impl RefUnwindSafe for SingleSetter
impl Send for SingleSetter
impl Sync for SingleSetter
impl Unpin for SingleSetter
impl UnwindSafe for SingleSetter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
sourcefn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
Try approximate conversion from Self to T Read more
sourcefn cast_approx(self) -> T
fn cast_approx(self) -> T
Cast approximately from Self to T Read more
sourceimpl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
sourcefn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
sourcefn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
sourcefn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
sourcefn try_cast_trunc(self) -> Result<T, Error>
fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
sourcefn try_cast_nearest(self) -> Result<T, Error>
fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
sourcefn try_cast_floor(self) -> Result<T, Error>
fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
sourcefn try_cast_ceil(self) -> Result<T, Error>
fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more