pub struct Hexagram {Show 13 fields
pub number: u8,
pub name: String,
pub chinese: String,
pub pinyin: String,
pub unicode: String,
pub binary: String,
pub opposite: String,
pub upper_trigram: String,
pub lower_trigram: String,
pub description: String,
pub judgment: HexagramJudgment,
pub image: HexagramImage,
pub lines: HashMap<String, LineInterpretation>,
}Fields§
§number: u8§name: String§chinese: String§pinyin: String§unicode: String§binary: String§opposite: String§upper_trigram: String§lower_trigram: String§description: String§judgment: HexagramJudgment§image: HexagramImage§lines: HashMap<String, LineInterpretation>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Hexagram
impl<'de> Deserialize<'de> for Hexagram
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
Auto Trait Implementations§
impl Freeze for Hexagram
impl RefUnwindSafe for Hexagram
impl Send for Hexagram
impl Sync for Hexagram
impl Unpin for Hexagram
impl UnsafeUnpin for Hexagram
impl UnwindSafe for Hexagram
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