pub struct SparklineProps {
pub values: Vec<Option<u64>>,
pub max: Option<u64>,
pub direction: SparklineDirection,
pub absent_value_symbol: char,
pub absent_value_style: Style,
}Fields§
§values: Vec<Option<u64>>§max: Option<u64>§direction: SparklineDirection§absent_value_symbol: char§absent_value_style: StyleTrait Implementations§
Source§impl Clone for SparklineProps
impl Clone for SparklineProps
Source§fn clone(&self) -> SparklineProps
fn clone(&self) -> SparklineProps
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 SparklineProps
impl Debug for SparklineProps
Source§impl PartialEq for SparklineProps
impl PartialEq for SparklineProps
impl Eq for SparklineProps
impl StructuralPartialEq for SparklineProps
Auto Trait Implementations§
impl Freeze for SparklineProps
impl RefUnwindSafe for SparklineProps
impl Send for SparklineProps
impl Sync for SparklineProps
impl Unpin for SparklineProps
impl UnsafeUnpin for SparklineProps
impl UnwindSafe for SparklineProps
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