pub enum CodingScheme {
Gs1,
Nde,
Eic,
}Expand description
Identifier coding scheme used for market participant IDs and object codes.
Variants§
Gs1
GS1 Global Location Number (GLN-13) or Global Service Relation Number (GSRN-18).
Nde
German national coding scheme (BDEW-Code, 13-digit).
Eic
Energy Identification Coding Scheme (EIC), maintained by ENTSO-E.
Trait Implementations§
Source§impl Clone for CodingScheme
impl Clone for CodingScheme
Source§fn clone(&self) -> CodingScheme
fn clone(&self) -> CodingScheme
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CodingScheme
Source§impl Debug for CodingScheme
impl Debug for CodingScheme
Source§impl<'de> Deserialize<'de> for CodingScheme
impl<'de> Deserialize<'de> for CodingScheme
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 Eq for CodingScheme
Source§impl Hash for CodingScheme
impl Hash for CodingScheme
Source§impl PartialEq for CodingScheme
impl PartialEq for CodingScheme
Source§fn eq(&self, other: &CodingScheme) -> bool
fn eq(&self, other: &CodingScheme) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CodingScheme
impl Serialize for CodingScheme
impl StructuralPartialEq for CodingScheme
Auto Trait Implementations§
impl Freeze for CodingScheme
impl RefUnwindSafe for CodingScheme
impl Send for CodingScheme
impl Sync for CodingScheme
impl Unpin for CodingScheme
impl UnsafeUnpin for CodingScheme
impl UnwindSafe for CodingScheme
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