pub enum Region {
Show 17 variants
NorthScotland = 1,
SouthScotland = 2,
NorthWestEngland = 3,
NorthEastEngland = 4,
SouthYorkshire = 5,
NorthWalesMerseysideAndCheshire = 6,
SouthWales = 7,
WestMidlands = 8,
EastMidlands = 9,
EastEngland = 10,
SouthWestEngland = 11,
SouthEngland = 12,
London = 13,
SouthEastEngland = 14,
England = 15,
Scotland = 16,
Wales = 17,
}
Expand description
Region
Variants§
NorthScotland = 1
SouthScotland = 2
NorthWestEngland = 3
NorthEastEngland = 4
SouthYorkshire = 5
NorthWalesMerseysideAndCheshire = 6
SouthWales = 7
WestMidlands = 8
EastMidlands = 9
EastEngland = 10
SouthWestEngland = 11
SouthEngland = 12
London = 13
SouthEastEngland = 14
England = 15
Scotland = 16
Wales = 17
Trait Implementations§
impl Copy 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.