pub struct TextFrame {
pub paragraphs: Vec<Paragraph>,
pub anchor: TextAnchor,
pub wrap: bool,
pub margin_left: u32,
pub margin_right: u32,
pub margin_top: u32,
pub margin_bottom: u32,
}Expand description
A text frame containing paragraphs
Fields§
§paragraphs: Vec<Paragraph>§anchor: TextAnchor§wrap: bool§margin_left: u32§margin_right: u32§margin_top: u32§margin_bottom: u32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TextFrame
impl RefUnwindSafe for TextFrame
impl Send for TextFrame
impl Sync for TextFrame
impl Unpin for TextFrame
impl UnwindSafe for TextFrame
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