pub struct JournalInstanceFlat {Show 21 fields
pub id: i32,
pub name: String,
pub description: String,
pub map_id: i32,
pub background_file_data_id: i32,
pub background_storage_path: String,
pub button_file_data_id: i32,
pub button_storage_path: String,
pub button_small_file_data_id: i32,
pub lore_file_data_id: i32,
pub lore_storage_path: String,
pub loadscreen_file_data_id: i32,
pub loadscreen_storage_path: String,
pub loadscreen_seo_storage_path: String,
pub kind: InstanceKind,
pub is_mythic_plus: bool,
pub is_current_season: bool,
pub tier_id: i32,
pub tier_name: String,
pub tier_order_index: i32,
pub encounters: Vec<EncounterEntry>,
}Fields§
§id: i32§name: String§description: String§map_id: i32§background_file_data_id: i32§background_storage_path: String§lore_file_data_id: i32§lore_storage_path: String§loadscreen_file_data_id: i32§loadscreen_storage_path: String§loadscreen_seo_storage_path: String§kind: InstanceKind§is_mythic_plus: bool§is_current_season: bool§tier_id: i32§tier_name: String§tier_order_index: i32§encounters: Vec<EncounterEntry>Trait Implementations§
Source§impl Clone for JournalInstanceFlat
impl Clone for JournalInstanceFlat
Source§fn clone(&self) -> JournalInstanceFlat
fn clone(&self) -> JournalInstanceFlat
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 CopyInsert for JournalInstanceFlat
impl CopyInsert for JournalInstanceFlat
Source§impl Debug for JournalInstanceFlat
impl Debug for JournalInstanceFlat
Source§impl Default for JournalInstanceFlat
impl Default for JournalInstanceFlat
Source§fn default() -> JournalInstanceFlat
fn default() -> JournalInstanceFlat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JournalInstanceFlat
impl<'de> Deserialize<'de> for JournalInstanceFlat
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 JournalInstanceFlat
impl RefUnwindSafe for JournalInstanceFlat
impl Send for JournalInstanceFlat
impl Sync for JournalInstanceFlat
impl Unpin for JournalInstanceFlat
impl UnsafeUnpin for JournalInstanceFlat
impl UnwindSafe for JournalInstanceFlat
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