pub struct QuadrantLabels {
pub q1: Option<String>,
pub q2: Option<String>,
pub q3: Option<String>,
pub q4: Option<String>,
}Expand description
Labels for each of the four quadrants.
Mermaid numbers quadrants starting from top-right and going counter-clockwise: Q1 = top-right, Q2 = top-left, Q3 = bottom-left, Q4 = bottom-right.
Fields§
§q1: Option<String>§q2: Option<String>§q3: Option<String>§q4: Option<String>Trait Implementations§
Source§impl Clone for QuadrantLabels
impl Clone for QuadrantLabels
Source§fn clone(&self) -> QuadrantLabels
fn clone(&self) -> QuadrantLabels
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 QuadrantLabels
impl Debug for QuadrantLabels
Source§impl Default for QuadrantLabels
impl Default for QuadrantLabels
Source§fn default() -> QuadrantLabels
fn default() -> QuadrantLabels
Returns the “default value” for a type. Read more
Source§impl PartialEq for QuadrantLabels
impl PartialEq for QuadrantLabels
Source§fn eq(&self, other: &QuadrantLabels) -> bool
fn eq(&self, other: &QuadrantLabels) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for QuadrantLabels
impl StructuralPartialEq for QuadrantLabels
Auto Trait Implementations§
impl Freeze for QuadrantLabels
impl RefUnwindSafe for QuadrantLabels
impl Send for QuadrantLabels
impl Sync for QuadrantLabels
impl Unpin for QuadrantLabels
impl UnsafeUnpin for QuadrantLabels
impl UnwindSafe for QuadrantLabels
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