pub struct WeatherAvailability {
pub minute_availability: AvailabilityKind,
pub alert_availability: AvailabilityKind,
}Fields§
§minute_availability: AvailabilityKind§alert_availability: AvailabilityKindTrait Implementations§
Source§impl Clone for WeatherAvailability
impl Clone for WeatherAvailability
Source§fn clone(&self) -> WeatherAvailability
fn clone(&self) -> WeatherAvailability
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 WeatherAvailability
impl Debug for WeatherAvailability
Source§impl<'de> Deserialize<'de> for WeatherAvailability
impl<'de> Deserialize<'de> for WeatherAvailability
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 PartialEq for WeatherAvailability
impl PartialEq for WeatherAvailability
Source§fn eq(&self, other: &WeatherAvailability) -> bool
fn eq(&self, other: &WeatherAvailability) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WeatherAvailability
impl StructuralPartialEq for WeatherAvailability
Auto Trait Implementations§
impl Freeze for WeatherAvailability
impl RefUnwindSafe for WeatherAvailability
impl Send for WeatherAvailability
impl Sync for WeatherAvailability
impl Unpin for WeatherAvailability
impl UnsafeUnpin for WeatherAvailability
impl UnwindSafe for WeatherAvailability
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