pub enum Region {
AS923_1,
AS923_2,
AS923_3,
AS923_4,
AU915,
EU868,
EU433,
IN865,
US915,
}Expand description
Regions supported by this crate: AS923_1, AS923_2, AS923_3, AS923_4, AU915, EU868, EU433, IN865, US915.
Each region is individually feature-gated (eg: region-eu868), however, by default, all regions are enabled.
Variants§
AS923_1
Available on crate feature
region-as923-1 only.AS923_2
Available on crate feature
region-as923-2 only.AS923_3
Available on crate feature
region-as923-3 only.AS923_4
Available on crate feature
region-as923-4 only.AU915
Available on crate feature
region-au915 only.EU868
Available on crate feature
region-eu868 only.EU433
Available on crate feature
region-eu433 only.IN865
Available on crate feature
region-in865 only.US915
Available on crate feature
region-us915 only.Trait Implementations§
Source§impl<'de> Deserialize<'de> for Region
impl<'de> Deserialize<'de> for Region
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 Copy for Region
impl Eq for Region
impl StructuralPartialEq for Region
Auto Trait Implementations§
impl Freeze for Region
impl RefUnwindSafe for Region
impl Send for Region
impl Sync for Region
impl Unpin for Region
impl UnwindSafe for Region
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