pub enum TextFlow {
Linear,
Path(Rc<TextPath>),
}
Expand description
A text chunk flow property.
Variants§
Linear
A linear layout.
Includes left-to-right, right-to-left and top-to-bottom.
Path(Rc<TextPath>)
A text-on-path layout.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TextFlow
impl RefUnwindSafe for TextFlow
impl !Send for TextFlow
impl !Sync for TextFlow
impl Unpin for TextFlow
impl UnwindSafe for TextFlow
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