pub enum RegionTrue {
Show 16 variants
UsWest1,
UsEast1,
UsEast2,
CaCentral1,
EuWest1,
EuWest2,
EuWest3,
EuCentral1,
EuCentral2,
EuNorth1,
ApSouth1,
ApSoutheast1,
ApNortheast1,
ApNortheast2,
ApSoutheast2,
SaEast1,
}
Expand description
This is the S3 Region. It should look like us-east-1 It should be one of the supabase regions defined in the SUPABASE_REGION enum Check https://supabase.com/docs/guides/platform/regions for up to date regions
Variants§
UsWest1
UsEast1
UsEast2
CaCentral1
EuWest1
EuWest2
EuWest3
EuCentral1
EuCentral2
EuNorth1
ApSouth1
ApSoutheast1
ApNortheast1
ApNortheast2
ApSoutheast2
SaEast1
Trait Implementations§
Source§impl Clone for RegionTrue
impl Clone for RegionTrue
Source§fn clone(&self) -> RegionTrue
fn clone(&self) -> RegionTrue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RegionTrue
impl Debug for RegionTrue
Source§impl Default for RegionTrue
impl Default for RegionTrue
Source§fn default() -> RegionTrue
fn default() -> RegionTrue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegionTrue
impl<'de> Deserialize<'de> for RegionTrue
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 Hash for RegionTrue
impl Hash for RegionTrue
Source§impl Ord for RegionTrue
impl Ord for RegionTrue
Source§fn cmp(&self, other: &RegionTrue) -> Ordering
fn cmp(&self, other: &RegionTrue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RegionTrue
impl PartialEq for RegionTrue
Source§impl PartialOrd for RegionTrue
impl PartialOrd for RegionTrue
Source§impl Serialize for RegionTrue
impl Serialize for RegionTrue
impl Copy for RegionTrue
impl Eq for RegionTrue
impl StructuralPartialEq for RegionTrue
Auto Trait Implementations§
impl Freeze for RegionTrue
impl RefUnwindSafe for RegionTrue
impl Send for RegionTrue
impl Sync for RegionTrue
impl Unpin for RegionTrue
impl UnwindSafe for RegionTrue
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