#[non_exhaustive]pub enum SiteStatus {
Pending,
Active,
Closed,
}Expand description
Site status.
Pending sites are still in the process of being transferred.
Note: Amber only includes sites that have correct address details. If you expect to see a site, but don’t, you may need to contact info@amber.com.au to check that the address is correct.
Active sites are ones that Amber actively supplies electricity to.
Closed sites are old sites that Amber no longer supplies.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Pending
Site is still in the process of being transferred.
Note: Amber only includes sites that have correct address details. If you expect to see a site, but don’t, you may need to contact info@amber.com.au to check that the address is correct.
Active
Site is actively supplied with electricity by Amber.
Closed
Old site that Amber no longer supplies.
Trait Implementations§
Source§impl Clone for SiteStatus
impl Clone for SiteStatus
Source§fn clone(&self) -> SiteStatus
fn clone(&self) -> SiteStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SiteStatus
impl Debug for SiteStatus
Source§impl<'de> Deserialize<'de> for SiteStatus
impl<'de> Deserialize<'de> for SiteStatus
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>,
Source§impl Display for SiteStatus
impl Display for SiteStatus
Source§impl PartialEq for SiteStatus
impl PartialEq for SiteStatus
impl Eq for SiteStatus
impl StructuralPartialEq for SiteStatus
Auto Trait Implementations§
impl Freeze for SiteStatus
impl RefUnwindSafe for SiteStatus
impl Send for SiteStatus
impl Sync for SiteStatus
impl Unpin for SiteStatus
impl UnwindSafe for SiteStatus
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
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.