pub enum ChartAlgorithmKind {
QuanShu,
Zhongzhou,
Placeholder,
}Expand description
Chart algorithm family (school) associated with a method profile.
This is the algorithm family axis — it names the school of rules used to
generate a chart. It is independent of ChartPlane, which names the
plane variant (天盘 / 地盘 / 人盘) within that school.
Variants§
QuanShu
Quan Shu chart algorithm family (全书).
Zhongzhou
Zhongzhou chart algorithm family (中州).
Placeholder
Placeholder algorithm marker used before chart generation is implemented.
Trait Implementations§
Source§impl Clone for ChartAlgorithmKind
impl Clone for ChartAlgorithmKind
Source§fn clone(&self) -> ChartAlgorithmKind
fn clone(&self) -> ChartAlgorithmKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ChartAlgorithmKind
Source§impl Debug for ChartAlgorithmKind
impl Debug for ChartAlgorithmKind
Source§impl<'de> Deserialize<'de> for ChartAlgorithmKind
impl<'de> Deserialize<'de> for ChartAlgorithmKind
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
impl Eq for ChartAlgorithmKind
Source§impl Hash for ChartAlgorithmKind
impl Hash for ChartAlgorithmKind
Source§impl PartialEq for ChartAlgorithmKind
impl PartialEq for ChartAlgorithmKind
Source§fn eq(&self, other: &ChartAlgorithmKind) -> bool
fn eq(&self, other: &ChartAlgorithmKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChartAlgorithmKind
impl Serialize for ChartAlgorithmKind
impl StructuralPartialEq for ChartAlgorithmKind
Auto Trait Implementations§
impl Freeze for ChartAlgorithmKind
impl RefUnwindSafe for ChartAlgorithmKind
impl Send for ChartAlgorithmKind
impl Sync for ChartAlgorithmKind
impl Unpin for ChartAlgorithmKind
impl UnsafeUnpin for ChartAlgorithmKind
impl UnwindSafe for ChartAlgorithmKind
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