pub struct QuestCatalogEntry {
pub quest_id: String,
pub title: String,
pub description: String,
pub step_count: u32,
pub board_ids: Vec<String>,
}Fields§
§quest_id: String§title: String§description: String§step_count: u32§board_ids: Vec<String>Trait Implementations§
Source§impl Clone for QuestCatalogEntry
impl Clone for QuestCatalogEntry
Source§fn clone(&self) -> QuestCatalogEntry
fn clone(&self) -> QuestCatalogEntry
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 QuestCatalogEntry
impl Debug for QuestCatalogEntry
Source§impl<'de> Deserialize<'de> for QuestCatalogEntry
impl<'de> Deserialize<'de> for QuestCatalogEntry
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 QuestCatalogEntry
impl PartialEq for QuestCatalogEntry
Source§impl Serialize for QuestCatalogEntry
impl Serialize for QuestCatalogEntry
impl StructuralPartialEq for QuestCatalogEntry
Auto Trait Implementations§
impl Freeze for QuestCatalogEntry
impl RefUnwindSafe for QuestCatalogEntry
impl Send for QuestCatalogEntry
impl Sync for QuestCatalogEntry
impl Unpin for QuestCatalogEntry
impl UnsafeUnpin for QuestCatalogEntry
impl UnwindSafe for QuestCatalogEntry
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