pub struct PlaceDetails {Show 15 fields
pub id: u64,
pub name: String,
pub description: String,
pub source_name: String,
pub source_description: String,
pub universe_id: u64,
pub universe_root_place_id: u64,
pub url: String,
pub image_token: String,
pub reason_prohibited: String,
pub builder: String,
pub builder_id: u64,
pub price: u64,
pub is_playable: bool,
pub is_verified: bool,
}Fields§
§id: u64§name: String§description: String§source_name: String§source_description: String§universe_id: u64§universe_root_place_id: u64§url: String§image_token: String§reason_prohibited: String§builder: String§builder_id: u64§price: u64§is_playable: bool§is_verified: boolTrait Implementations§
Source§impl Clone for PlaceDetails
impl Clone for PlaceDetails
Source§fn clone(&self) -> PlaceDetails
fn clone(&self) -> PlaceDetails
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 PlaceDetails
impl Debug for PlaceDetails
Source§impl<'de> Deserialize<'de> for PlaceDetails
impl<'de> Deserialize<'de> for PlaceDetails
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 Eq for PlaceDetails
Source§impl PartialEq for PlaceDetails
impl PartialEq for PlaceDetails
Source§impl Serialize for PlaceDetails
impl Serialize for PlaceDetails
impl StructuralPartialEq for PlaceDetails
Auto Trait Implementations§
impl Freeze for PlaceDetails
impl RefUnwindSafe for PlaceDetails
impl Send for PlaceDetails
impl Sync for PlaceDetails
impl Unpin for PlaceDetails
impl UnsafeUnpin for PlaceDetails
impl UnwindSafe for PlaceDetails
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