pub struct Grid { /* private fields */ }
Implementations§
§impl Grid
impl Grid
pub fn new() -> Self
pub fn get_color(&mut self) -> &mut String
pub fn color(self, value: impl Into<String>) -> Grid
pub fn get_display(&mut self) -> &mut Option<bool>
pub fn display(self, value: impl Into<bool>) -> Grid
pub fn get_draw_on_chart_area(&mut self) -> &mut Option<bool>
pub fn draw_on_chart_area(self, value: impl Into<bool>) -> Grid
pub fn get_offset(&mut self) -> &mut Option<bool>
pub fn offset(self, value: impl Into<bool>) -> Grid
pub fn get_tick_color(&mut self) -> &mut String
pub fn tick_color(self, value: impl Into<String>) -> Grid
pub fn get_z(&mut self) -> &mut NumberString
pub fn z(self, value: impl Into<NumberString>) -> Grid
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Grid
impl<'de> Deserialize<'de> for Grid
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Grid
impl Ord for Grid
Source§impl PartialOrd for Grid
impl PartialOrd for Grid
impl Eq for Grid
impl StructuralPartialEq for Grid
Auto Trait Implementations§
impl Freeze for Grid
impl RefUnwindSafe for Grid
impl Send for Grid
impl Sync for Grid
impl Unpin for Grid
impl UnwindSafe for Grid
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