pub struct Axis<T: AxisKindMarker> {
pub data: Option<Vec<ValueSerializeWrapper<T>>>,
pub extra: Option<Value>,
/* private fields */
}
Expand description
Axis (cartesian)
Fields§
§data: Option<Vec<ValueSerializeWrapper<T>>>
Data for category axis
extra: Option<Value>
Additional raw axis options
Implementations§
Trait Implementations§
Source§impl<T: AxisKindMarker> Default for Axis<T>
impl<T: AxisKindMarker> Default for Axis<T>
Auto Trait Implementations§
impl<T> Freeze for Axis<T>
impl<T> RefUnwindSafe for Axis<T>where
T: RefUnwindSafe,
impl<T> Send for Axis<T>where
T: Send,
impl<T> Sync for Axis<T>where
T: Sync,
impl<T> Unpin for Axis<T>where
T: Unpin,
impl<T> UnwindSafe for Axis<T>where
T: UnwindSafe,
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