#[repr(C)]pub struct InlineTextLayout {
pub lines: InlineTextLineVec,
pub content_size: LogicalSize,
}
Fields§
§lines: InlineTextLineVec
§content_size: LogicalSize
Implementations§
Source§impl InlineTextLayout
impl InlineTextLayout
pub fn get_leading(&self) -> f32
pub fn get_trailing(&self) -> f32
Sourcepub fn align_children_horizontal(
&mut self,
parent_size: &LogicalSize,
horizontal_alignment: StyleTextAlign,
)
pub fn align_children_horizontal( &mut self, parent_size: &LogicalSize, horizontal_alignment: StyleTextAlign, )
Align the lines horizontal to their bounding box
Sourcepub fn align_children_vertical_in_parent_bounds(
&mut self,
parent_size: &LogicalSize,
vertical_alignment: StyleVerticalAlign,
)
pub fn align_children_vertical_in_parent_bounds( &mut self, parent_size: &LogicalSize, vertical_alignment: StyleVerticalAlign, )
Align the lines vertical to their parents container
Trait Implementations§
Source§impl Clone for InlineTextLayout
impl Clone for InlineTextLayout
Source§fn clone(&self) -> InlineTextLayout
fn clone(&self) -> InlineTextLayout
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 moreSource§impl Debug for InlineTextLayout
impl Debug for InlineTextLayout
Source§impl PartialEq for InlineTextLayout
impl PartialEq for InlineTextLayout
Source§impl PartialOrd for InlineTextLayout
impl PartialOrd for InlineTextLayout
impl StructuralPartialEq for InlineTextLayout
Auto Trait Implementations§
impl Freeze for InlineTextLayout
impl RefUnwindSafe for InlineTextLayout
impl Send for InlineTextLayout
impl Sync for InlineTextLayout
impl Unpin for InlineTextLayout
impl UnwindSafe for InlineTextLayout
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§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