pub struct Atmosphere {
pub hot: bool,
pub density: AtmosphereDensity,
pub kind: AtmosphereType,
}
Fields§
§hot: bool
§density: AtmosphereDensity
§kind: AtmosphereType
Trait Implementations§
Source§impl Clone for Atmosphere
impl Clone for Atmosphere
Source§fn clone(&self) -> Atmosphere
fn clone(&self) -> Atmosphere
Returns a copy 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 Atmosphere
impl Debug for Atmosphere
Source§impl<'de> Deserialize<'de> for Atmosphere
impl<'de> Deserialize<'de> for Atmosphere
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
Source§impl FromStr for Atmosphere
impl FromStr for Atmosphere
Source§impl PartialEq for Atmosphere
impl PartialEq for Atmosphere
Source§impl Serialize for Atmosphere
impl Serialize for Atmosphere
impl StructuralPartialEq for Atmosphere
Auto Trait Implementations§
impl Freeze for Atmosphere
impl RefUnwindSafe for Atmosphere
impl Send for Atmosphere
impl Sync for Atmosphere
impl Unpin for Atmosphere
impl UnwindSafe for Atmosphere
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