pub struct Actor {Show 22 fields
pub id: usize,
pub name: String,
pub class_id: usize,
pub initial_level: i32,
pub final_level: i32,
pub exp_basis: i32,
pub exp_inflation: i32,
pub character_name: Path,
pub character_hue: i32,
pub battler_name: Path,
pub battler_hue: i32,
pub parameters: Table2,
pub weapon_id: Option<usize>,
pub armor1_id: Option<usize>,
pub armor2_id: Option<usize>,
pub armor3_id: Option<usize>,
pub armor4_id: Option<usize>,
pub weapon_fix: bool,
pub armor1_fix: bool,
pub armor2_fix: bool,
pub armor3_fix: bool,
pub armor4_fix: bool,
}Fields§
§id: usize§name: String§class_id: usize§initial_level: i32§final_level: i32§exp_basis: i32§exp_inflation: i32§character_name: Path§character_hue: i32§battler_name: Path§battler_hue: i32§parameters: Table2§weapon_id: Option<usize>§armor1_id: Option<usize>§armor2_id: Option<usize>§armor3_id: Option<usize>§armor4_id: Option<usize>§weapon_fix: bool§armor1_fix: bool§armor2_fix: bool§armor3_fix: bool§armor4_fix: boolTrait Implementations§
Source§impl DatabaseEntry for Actor
impl DatabaseEntry for Actor
fn default_with_id(id: usize) -> Self
Source§impl<'de> Deserialize<'de> for Actor
impl<'de> Deserialize<'de> for Actor
Source§fn deserialize<D>(deserializer: D) -> Result<Self, DeError>where
D: DeserializerTrait<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, DeError>where
D: DeserializerTrait<'de>,
Deserialize this value from the given deserializer.
Source§impl<'de> Deserialize<'de> for Actor
impl<'de> Deserialize<'de> for Actor
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 Actor
impl RefUnwindSafe for Actor
impl Send for Actor
impl Sync for Actor
impl Unpin for Actor
impl UnwindSafe for Actor
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