pub struct IdentificationParameter {
pub identification_date_time: String,
pub energy_direction: EnergyDirection,
pub identification_parameter_id: Option<IdentificationParameterId>,
pub identification_parameter_address: IdentificationParameterAddress,
}Expand description
Input parameters for a MaLo identification request.
Fields§
§identification_date_time: StringEffective date for identification — ISO 8601 UTC, day-boundary midnight.
energy_direction: EnergyDirection§identification_parameter_id: Option<IdentificationParameterId>Optional ID-based search criteria.
identification_parameter_address: IdentificationParameterAddressAddress-based search criteria.
Trait Implementations§
Source§impl Clone for IdentificationParameter
impl Clone for IdentificationParameter
Source§fn clone(&self) -> IdentificationParameter
fn clone(&self) -> IdentificationParameter
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 IdentificationParameter
impl Debug for IdentificationParameter
Source§impl<'de> Deserialize<'de> for IdentificationParameter
impl<'de> Deserialize<'de> for IdentificationParameter
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 IdentificationParameter
impl PartialEq for IdentificationParameter
Source§fn eq(&self, other: &IdentificationParameter) -> bool
fn eq(&self, other: &IdentificationParameter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IdentificationParameter
impl Serialize for IdentificationParameter
impl StructuralPartialEq for IdentificationParameter
Auto Trait Implementations§
impl Freeze for IdentificationParameter
impl RefUnwindSafe for IdentificationParameter
impl Send for IdentificationParameter
impl Sync for IdentificationParameter
impl Unpin for IdentificationParameter
impl UnsafeUnpin for IdentificationParameter
impl UnwindSafe for IdentificationParameter
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