pub struct EsiAttributes {
pub intelligence: i32,
pub memory: i32,
pub perception: i32,
pub willpower: i32,
pub charisma: i32,
pub bonus_remaps: Option<i32>,
pub last_remap_date: Option<DateTime<Utc>>,
pub accrued_remap_cooldown_date: Option<DateTime<Utc>>,
}Expand description
Character attributes.
Fields§
§intelligence: i32§memory: i32§perception: i32§willpower: i32§charisma: i32§bonus_remaps: Option<i32>§last_remap_date: Option<DateTime<Utc>>§accrued_remap_cooldown_date: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for EsiAttributes
impl Clone for EsiAttributes
Source§fn clone(&self) -> EsiAttributes
fn clone(&self) -> EsiAttributes
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 EsiAttributes
impl Debug for EsiAttributes
Source§impl<'de> Deserialize<'de> for EsiAttributes
impl<'de> Deserialize<'de> for EsiAttributes
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 EsiAttributes
impl RefUnwindSafe for EsiAttributes
impl Send for EsiAttributes
impl Sync for EsiAttributes
impl Unpin for EsiAttributes
impl UnsafeUnpin for EsiAttributes
impl UnwindSafe for EsiAttributes
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