pub struct RadarCoordinate { /* private fields */ }
Implementations§
Source§impl RadarCoordinate
impl RadarCoordinate
pub fn new() -> Self
pub fn center<C: Into<CompositeValue>>(self, center: C) -> Self
pub fn radius<C: Into<CompositeValue>>(self, radius: C) -> Self
pub fn start_angle<F: Into<i64>>(self, start_angle: F) -> Self
pub fn axis_name<R: Into<RadarAxisName>>(self, axis_name: R) -> Self
pub fn name_gap<F: Into<i64>>(self, name_gap: F) -> Self
pub fn split_number<F: Into<i64>>(self, split_number: F) -> Self
pub fn shape<S: Into<Shape>>(self, shape: S) -> Self
pub fn scale(self, scale: bool) -> Self
pub fn axis_line<L: Into<AxisLine>>(self, axis_line: L) -> Self
pub fn axis_tick<T: Into<AxisTick>>(self, axis_tick: T) -> Self
pub fn axis_label<L: Into<AxisLabel>>(self, axis_label: L) -> Self
pub fn split_line<L: Into<SplitLine>>(self, split_line: L) -> Self
pub fn split_area<A: Into<SplitArea>>(self, split_area: A) -> Self
pub fn indicator<I: Into<RadarIndicator>>(self, indicator: Vec<I>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RadarCoordinate
impl RefUnwindSafe for RadarCoordinate
impl Send for RadarCoordinate
impl Sync for RadarCoordinate
impl Unpin for RadarCoordinate
impl UnwindSafe for RadarCoordinate
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