pub enum GraphError {
NoData,
ColumnNameTooWideForGraphConfig,
GraphConfigMaxWidthTooSmall,
GraphConfigMaxHeightTooSmall,
CustomRangeLowerValueLargerThanUpperValue,
}Variants§
NoData
Indicates the Vec of Column structs given to the graph function was empty
ColumnNameTooWideForGraphConfig
GraphConfigMaxWidthTooSmall
GraphConfigMaxHeightTooSmall
CustomRangeLowerValueLargerThanUpperValue
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphError
impl RefUnwindSafe for GraphError
impl Send for GraphError
impl Sync for GraphError
impl Unpin for GraphError
impl UnwindSafe for GraphError
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