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>§tranchen_ids: Option<Vec<String>>§melo_ids: Option<Vec<MeloId>>§meter_numbers: Option<Vec<String>>§customer_number: Option<String>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
Source§impl PartialEq for IdentificationParameterId
impl PartialEq for IdentificationParameterId
Source§fn eq(&self, other: &IdentificationParameterId) -> bool
fn eq(&self, other: &IdentificationParameterId) -> bool
Tests for
self and other values to be equal, and is used by ==.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