pub struct Banking {
pub balance: f64,
pub transactions: Vec<Value>,
pub extra: JsonObject,
}Expand description
Co-op banking information for a SkyBlockProfile.
Fields§
§balance: f64§transactions: Vec<Value>§extra: JsonObjectTrait Implementations§
Source§impl<'de> Deserialize<'de> for Banking
impl<'de> Deserialize<'de> for Banking
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 Banking
impl RefUnwindSafe for Banking
impl Send for Banking
impl Sync for Banking
impl Unpin for Banking
impl UnsafeUnpin for Banking
impl UnwindSafe for Banking
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