pub struct HousingHouse {
pub uuid: String,
pub owner: String,
pub name: Option<String>,
pub created_at: i64,
pub players: i64,
pub cookies: Value,
pub extra: JsonObject,
}Expand description
A Housing house, as returned by the housing/* endpoints.
Fields§
§uuid: String§owner: String§name: Option<String>§created_at: i64§players: i64§extra: JsonObjectTrait Implementations§
Source§impl Clone for HousingHouse
impl Clone for HousingHouse
Source§fn clone(&self) -> HousingHouse
fn clone(&self) -> HousingHouse
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 HousingHouse
impl Debug for HousingHouse
Source§impl<'de> Deserialize<'de> for HousingHouse
impl<'de> Deserialize<'de> for HousingHouse
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 HousingHouse
impl RefUnwindSafe for HousingHouse
impl Send for HousingHouse
impl Sync for HousingHouse
impl Unpin for HousingHouse
impl UnsafeUnpin for HousingHouse
impl UnwindSafe for HousingHouse
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