pub struct AxisLineStyle { /* private fields */ }
Implementations§
Source§impl AxisLineStyle
impl AxisLineStyle
pub fn new() -> Self
pub fn color<C: Into<ColorSegment>>(self, color: C) -> Self
pub fn width<F: Into<i64>>(self, width: F) -> Self
pub fn shadow_blur<F: Into<i64>>(self, shadow_blur: F) -> Self
pub fn shadow_color<C: Into<Color>>(self, shadow_color: C) -> Self
pub fn shadow_offset_x<F: Into<i64>>(self, shadow_offset_x: F) -> Self
pub fn shadow_offset_y<F: Into<i64>>(self, shadow_offset_y: F) -> Self
pub fn opacity<F: Into<i64>>(self, opacity: F) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AxisLineStyle
impl RefUnwindSafe for AxisLineStyle
impl Send for AxisLineStyle
impl Sync for AxisLineStyle
impl Unpin for AxisLineStyle
impl UnwindSafe for AxisLineStyle
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more