pub struct Garden {
pub uuid: String,
pub garden_experience: i64,
pub commission_data: Option<Value>,
pub composter_data: Option<Value>,
pub active_commissions: Option<Value>,
pub resources_collected: Option<Value>,
pub crop_upgrade_levels: Option<Value>,
pub unlocked_plots_ids: Vec<String>,
pub unlocked_barn_skins: Vec<String>,
pub selected_barn_skin: Option<String>,
pub extra: JsonObject,
}Expand description
A profile’s garden, as returned by skyblock/garden.
Fields§
§uuid: String§garden_experience: i64§commission_data: Option<Value>§composter_data: Option<Value>§active_commissions: Option<Value>§resources_collected: Option<Value>§crop_upgrade_levels: Option<Value>§unlocked_plots_ids: Vec<String>§unlocked_barn_skins: Vec<String>§selected_barn_skin: Option<String>§extra: JsonObjectTrait Implementations§
Source§impl<'de> Deserialize<'de> for Garden
impl<'de> Deserialize<'de> for Garden
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 Garden
impl RefUnwindSafe for Garden
impl Send for Garden
impl Sync for Garden
impl Unpin for Garden
impl UnsafeUnpin for Garden
impl UnwindSafe for Garden
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