pub struct AnonymousFragment {
pub rect: Rect<Length>,
pub children: Vec<Fragment>,
pub mode: (WritingMode, Direction),
}
Expand description
Can contain child fragments with relative coordinates, but does not contribute to painting itself.
Fields§
§rect: Rect<Length>
§children: Vec<Fragment>
§mode: (WritingMode, Direction)
Implementations§
Source§impl AnonymousFragment
impl AnonymousFragment
pub fn no_op(mode: (WritingMode, Direction)) -> Self
Auto Trait Implementations§
impl Freeze for AnonymousFragment
impl RefUnwindSafe for AnonymousFragment
impl Send for AnonymousFragment
impl Sync for AnonymousFragment
impl Unpin for AnonymousFragment
impl UnwindSafe for AnonymousFragment
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> 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