pub struct DaiVanInsightDto {
pub direction: String,
pub direction_meaning: LocalizedTextDto,
pub start_age: String,
pub current_pillar: Option<DaiVanPillarInsightDto>,
pub all_pillars: Vec<DaiVanPillarInsightDto>,
pub phases_meaning: LocalizedTextDto,
}Fields§
§direction: String§direction_meaning: LocalizedTextDto§start_age: String§current_pillar: Option<DaiVanPillarInsightDto>§all_pillars: Vec<DaiVanPillarInsightDto>§phases_meaning: LocalizedTextDtoTrait Implementations§
Source§impl Clone for DaiVanInsightDto
impl Clone for DaiVanInsightDto
Source§fn clone(&self) -> DaiVanInsightDto
fn clone(&self) -> DaiVanInsightDto
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DaiVanInsightDto
impl Debug for DaiVanInsightDto
Source§impl<'de> Deserialize<'de> for DaiVanInsightDto
impl<'de> Deserialize<'de> for DaiVanInsightDto
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 DaiVanInsightDto
impl RefUnwindSafe for DaiVanInsightDto
impl Send for DaiVanInsightDto
impl Sync for DaiVanInsightDto
impl Unpin for DaiVanInsightDto
impl UnsafeUnpin for DaiVanInsightDto
impl UnwindSafe for DaiVanInsightDto
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