pub enum LoadClass {
Residential,
Commercial,
Industrial,
Agricultural,
DataCenter,
EvCharging,
Other,
}Expand description
Load class for planning and demand categorization.
Variants§
Residential
Residential customer load.
Commercial
Commercial customer load.
Industrial
Industrial customer load.
Agricultural
Agricultural customer load (irrigation, processing).
DataCenter
Data center load (high power factor, constant demand).
EvCharging
Electric vehicle charging load.
Other
Uncategorized load.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LoadClass
impl<'de> Deserialize<'de> for LoadClass
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 LoadClass
impl Eq for LoadClass
impl StructuralPartialEq for LoadClass
Auto Trait Implementations§
impl Freeze for LoadClass
impl RefUnwindSafe for LoadClass
impl Send for LoadClass
impl Sync for LoadClass
impl Unpin for LoadClass
impl UnsafeUnpin for LoadClass
impl UnwindSafe for LoadClass
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