pub struct Toilet {
pub used: bool,
pub aura: u32,
pub mana_currently: u32,
pub mana_total: u32,
pub sacrifices_left: u32,
}Expand description
The unlocked toilet, that you can throw items into
Fields§
§used: bool👎Deprecated: You should use sacrifices_left instead
§aura: u32The level the aura is at currently
mana_currently: u32The amount of mana currently in the toilet
mana_total: u32The total amount of mana you have to collect to flush the toilet
sacrifices_left: u32Trait Implementations§
Source§impl<'de> Deserialize<'de> for Toilet
impl<'de> Deserialize<'de> for Toilet
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
impl Copy for Toilet
Auto Trait Implementations§
impl Freeze for Toilet
impl RefUnwindSafe for Toilet
impl Send for Toilet
impl Sync for Toilet
impl Unpin for Toilet
impl UnwindSafe for Toilet
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