pub struct QuestStepView {
pub id: String,
pub title: String,
pub status: QuestStepStatusView,
pub reward: QuestRewardView,
}Expand description
Authored step summary for quest log / journal UI.
Fields§
§id: String§title: String§status: QuestStepStatusView§reward: QuestRewardViewTrait Implementations§
Source§impl Clone for QuestStepView
impl Clone for QuestStepView
Source§fn clone(&self) -> QuestStepView
fn clone(&self) -> QuestStepView
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 moreSource§impl Debug for QuestStepView
impl Debug for QuestStepView
Source§impl<'de> Deserialize<'de> for QuestStepView
impl<'de> Deserialize<'de> for QuestStepView
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
Source§impl PartialEq for QuestStepView
impl PartialEq for QuestStepView
Source§impl Serialize for QuestStepView
impl Serialize for QuestStepView
impl StructuralPartialEq for QuestStepView
Auto Trait Implementations§
impl Freeze for QuestStepView
impl RefUnwindSafe for QuestStepView
impl Send for QuestStepView
impl Sync for QuestStepView
impl Unpin for QuestStepView
impl UnsafeUnpin for QuestStepView
impl UnwindSafe for QuestStepView
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