pub struct StoreyData {
pub id: u64,
pub name: String,
pub elevation: f64,
}Expand description
Building storey data
Fields§
§id: u64§name: String§elevation: f64Trait Implementations§
Source§impl Clone for StoreyData
impl Clone for StoreyData
Source§fn clone(&self) -> StoreyData
fn clone(&self) -> StoreyData
Returns a duplicate of the value. Read more
1.0.0 · 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 StoreyData
impl Debug for StoreyData
Source§impl<'de> Deserialize<'de> for StoreyData
impl<'de> Deserialize<'de> for StoreyData
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 StoreyData
impl RefUnwindSafe for StoreyData
impl Send for StoreyData
impl Sync for StoreyData
impl Unpin for StoreyData
impl UnsafeUnpin for StoreyData
impl UnwindSafe for StoreyData
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