pub struct Page {
pub name: String,
pub index: usize,
pub width: f64,
pub height: f64,
pub shapes: Vec<Shape>,
pub connects: Vec<Connect>,
pub layers: HashMap<String, LayerDef>,
pub background: bool,
}Expand description
A page in a Visio document.
Fields§
§name: String§index: usize§width: f64§height: f64§shapes: Vec<Shape>§connects: Vec<Connect>§layers: HashMap<String, LayerDef>§background: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Page
impl RefUnwindSafe for Page
impl Send for Page
impl Sync for Page
impl Unpin for Page
impl UnsafeUnpin for Page
impl UnwindSafe for Page
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