Struct lay_rs::prelude::taffy::CollapsibleMarginSet
pub struct CollapsibleMarginSet { /* private fields */ }
Expand description
A set of margins that are available for collapsing with for block layout’s margin collapsing
Implementations§
§impl CollapsibleMarginSet
impl CollapsibleMarginSet
pub const ZERO: CollapsibleMarginSet = _
pub const ZERO: CollapsibleMarginSet = _
A default margin set with no collapsible margins
pub fn from_margin(margin: f32) -> CollapsibleMarginSet
pub fn from_margin(margin: f32) -> CollapsibleMarginSet
Create a set from a single margin
pub fn collapse_with_margin(self, margin: f32) -> CollapsibleMarginSet
pub fn collapse_with_margin(self, margin: f32) -> CollapsibleMarginSet
Collapse a single margin with this set
pub fn collapse_with_set(
self,
other: CollapsibleMarginSet,
) -> CollapsibleMarginSet
pub fn collapse_with_set( self, other: CollapsibleMarginSet, ) -> CollapsibleMarginSet
Collapse another margin set with this set
Trait Implementations§
§impl Clone for CollapsibleMarginSet
impl Clone for CollapsibleMarginSet
§fn clone(&self) -> CollapsibleMarginSet
fn clone(&self) -> CollapsibleMarginSet
Returns a copy 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 more§impl Debug for CollapsibleMarginSet
impl Debug for CollapsibleMarginSet
§impl PartialEq for CollapsibleMarginSet
impl PartialEq for CollapsibleMarginSet
impl Copy for CollapsibleMarginSet
impl StructuralPartialEq for CollapsibleMarginSet
Auto Trait Implementations§
impl Freeze for CollapsibleMarginSet
impl RefUnwindSafe for CollapsibleMarginSet
impl Send for CollapsibleMarginSet
impl Sync for CollapsibleMarginSet
impl Unpin for CollapsibleMarginSet
impl UnwindSafe for CollapsibleMarginSet
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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