pub struct IdentificationParameterId {
pub malo_id: Option<MaloId>,
pub tranchen_ids: Option<Vec<String>>,
pub melo_ids: Option<Vec<MeloId>>,
pub meter_numbers: Option<Vec<String>>,
pub customer_number: Option<String>,
}Expand description
Optional ID-based identification parameters.
Fields§
§malo_id: Option<MaloId>Optional market location ID to match.
tranchen_ids: Option<Vec<String>>Optional list of tranche IDs to match.
melo_ids: Option<Vec<MeloId>>Optional list of metering location IDs (MeLo) to match.
meter_numbers: Option<Vec<String>>Optional list of meter serial numbers to match.
customer_number: Option<String>Optional customer number to match.
Trait Implementations§
Source§impl Clone for IdentificationParameterId
impl Clone for IdentificationParameterId
Source§fn clone(&self) -> IdentificationParameterId
fn clone(&self) -> IdentificationParameterId
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 moreSource§impl Debug for IdentificationParameterId
impl Debug for IdentificationParameterId
Source§impl Default for IdentificationParameterId
impl Default for IdentificationParameterId
Source§fn default() -> IdentificationParameterId
fn default() -> IdentificationParameterId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentificationParameterId
impl<'de> Deserialize<'de> for IdentificationParameterId
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 StructuralPartialEq for IdentificationParameterId
Auto Trait Implementations§
impl Freeze for IdentificationParameterId
impl RefUnwindSafe for IdentificationParameterId
impl Send for IdentificationParameterId
impl Sync for IdentificationParameterId
impl Unpin for IdentificationParameterId
impl UnsafeUnpin for IdentificationParameterId
impl UnwindSafe for IdentificationParameterId
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