pub struct QuestObjectiveProgress {
pub label: String,
pub current: u32,
pub required: u32,
pub done: bool,
}Fields§
§label: String§current: u32§required: u32§done: boolTrait Implementations§
Source§impl Clone for QuestObjectiveProgress
impl Clone for QuestObjectiveProgress
Source§fn clone(&self) -> QuestObjectiveProgress
fn clone(&self) -> QuestObjectiveProgress
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 QuestObjectiveProgress
impl Debug for QuestObjectiveProgress
Source§impl<'de> Deserialize<'de> for QuestObjectiveProgress
impl<'de> Deserialize<'de> for QuestObjectiveProgress
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 QuestObjectiveProgress
impl PartialEq for QuestObjectiveProgress
Source§impl Serialize for QuestObjectiveProgress
impl Serialize for QuestObjectiveProgress
impl StructuralPartialEq for QuestObjectiveProgress
Auto Trait Implementations§
impl Freeze for QuestObjectiveProgress
impl RefUnwindSafe for QuestObjectiveProgress
impl Send for QuestObjectiveProgress
impl Sync for QuestObjectiveProgress
impl Unpin for QuestObjectiveProgress
impl UnsafeUnpin for QuestObjectiveProgress
impl UnwindSafe for QuestObjectiveProgress
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