pub struct AttributeValue {
pub base: f64,
pub value: f64,
pub sources: Vec<Source>,
}Expand description
One attribute, before and after the effects on it.
Fields§
§base: f64The value from the SDE.
value: f64The value after every effect is applied.
sources: Vec<Source>In the order pass 3 applied them; empty unless Options::sources is set.
Trait Implementations§
Source§impl Debug for AttributeValue
impl Debug for AttributeValue
Auto Trait Implementations§
impl Freeze for AttributeValue
impl RefUnwindSafe for AttributeValue
impl Send for AttributeValue
impl Sync for AttributeValue
impl Unpin for AttributeValue
impl UnsafeUnpin for AttributeValue
impl UnwindSafe for AttributeValue
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