[−][src]Struct plotters_unstable::coord::types::Monthly
Indicates the coord has a monthly resolution
Note: since month doesn't have a constant duration. We can't use a simple granularity to describe it. Thus we have this axis decorator to make it yield monthly key-points.
Trait Implementations
impl<T: Clone + TimeValue> Clone for Monthly<T>
[src]
impl<T: TimeValue + Clone> DiscreteRanged for Monthly<T> where
Range<T>: AsRangedCoord<Value = T>,
[src]
Range<T>: AsRangedCoord<Value = T>,
fn size(&self) -> usize
[src]
fn index_of(&self, value: &T) -> Option<usize>
[src]
fn from_index(&self, index: usize) -> Option<T>
[src]
fn values(&self) -> DiscreteValueIter<'_, Self> where
Self: Sized,
[src]
Self: Sized,
fn previous(&self, value: &Self::ValueType) -> Option<Self::ValueType>
[src]
fn next(&self, value: &Self::ValueType) -> Option<Self::ValueType>
[src]
impl<T: TimeValue + Clone> Ranged for Monthly<T> where
Range<T>: AsRangedCoord<Value = T>,
[src]
Range<T>: AsRangedCoord<Value = T>,
type FormatOption = NoDefaultFormatting
This marker decides if Plotters default ValueFormatter implementation should be used. This assicated type can be one of follow two types: - DefaultFormatting will allow Plotters automatically impl the formatter based on Debug
trait, if Debug
trait is not impl for the Self::Value
, ValueFormatter will not impl unless you impl it manually. Read more
type ValueType = T
The type of this value in this range specification
fn range(&self) -> Range<T>
[src]
fn map(&self, value: &Self::ValueType, limit: (i32, i32)) -> i32
[src]
fn key_points<HintType: KeyPointHint>(
&self,
hint: HintType
) -> Vec<Self::ValueType>
[src]
&self,
hint: HintType
) -> Vec<Self::ValueType>
fn axis_pixel_range(&self, limit: (i32, i32)) -> Range<i32>
[src]
impl<T: TimeValue + Datelike + Clone> ValueFormatter<T> for Monthly<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Monthly<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Monthly<T> where
T: Send,
T: Send,
impl<T> Sync for Monthly<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Monthly<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Monthly<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> AsRangedCoord for T where
T: Ranged,
[src]
T: Ranged,
type CoordDescType = T
type Value = <T as Ranged>::ValueType
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<DC> ReversibleRanged for DC where
DC: DiscreteRanged,
[src]
DC: DiscreteRanged,
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
T: Parameter<Self>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,