pub enum ResponseType {
Shelter,
Evacuate,
Prepare,
Execute,
Avoid,
Monitor,
Assess,
AllClear,
None,
}Expand description
The recommended action from a reporting agency.
Variants§
Shelter
Take shelter in place.
Evacuate
Relocate.
Prepare
Make preparations
Execute
Execute a pre-planned activity.
Avoid
Avoid the event.
Monitor
Monitor the situation.
Assess
Assess the situation.
AllClear
The event no longer poses a threat.
None
No action recommended.
Trait Implementations§
Source§impl Debug for ResponseType
impl Debug for ResponseType
Source§impl<'de> Deserialize<'de> for ResponseType
impl<'de> Deserialize<'de> for ResponseType
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 ResponseType
impl RefUnwindSafe for ResponseType
impl Send for ResponseType
impl Sync for ResponseType
impl Unpin for ResponseType
impl UnsafeUnpin for ResponseType
impl UnwindSafe for ResponseType
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