pub struct ContentArea {
pub name: String,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
pub leader: Option<FormNodeId>,
pub trailer: Option<FormNodeId>,
}Expand description
A content area within a page area.
Fields§
§name: StringContent area name.
x: f64X coordinate.
y: f64Y coordinate.
width: f64Width.
height: f64Height.
leader: Option<FormNodeId>Leader (header) node placed at the top of each page’s content area.
trailer: Option<FormNodeId>Trailer (footer) node placed at the bottom of each page’s content area.
Trait Implementations§
Source§impl Clone for ContentArea
impl Clone for ContentArea
Source§fn clone(&self) -> ContentArea
fn clone(&self) -> ContentArea
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContentArea
impl Debug for ContentArea
Auto Trait Implementations§
impl Freeze for ContentArea
impl RefUnwindSafe for ContentArea
impl Send for ContentArea
impl Sync for ContentArea
impl Unpin for ContentArea
impl UnsafeUnpin for ContentArea
impl UnwindSafe for ContentArea
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