pub struct GeomSection {
pub no_fill: bool,
pub no_line: bool,
pub no_show: bool,
pub ix: String,
pub rows: Vec<GeomRow>,
}Expand description
A geometry section (may contain multiple rows).
Fields§
§no_fill: bool§no_line: bool§no_show: bool§ix: String§rows: Vec<GeomRow>Trait Implementations§
Source§impl Clone for GeomSection
impl Clone for GeomSection
Source§fn clone(&self) -> GeomSection
fn clone(&self) -> GeomSection
Returns a duplicate 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 GeomSection
impl Debug for GeomSection
Source§impl Default for GeomSection
impl Default for GeomSection
Source§fn default() -> GeomSection
fn default() -> GeomSection
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GeomSection
impl RefUnwindSafe for GeomSection
impl Send for GeomSection
impl Sync for GeomSection
impl Unpin for GeomSection
impl UnsafeUnpin for GeomSection
impl UnwindSafe for GeomSection
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