pub struct MaloIdentResultNegative {
pub decision_tree: String,
pub response_code: String,
pub reason: Option<String>,
pub network_operator: Option<MarketPartnerId>,
}Expand description
Negative identification result, referencing the applicable decision tree.
Fields§
§decision_tree: StringDecision tree code from EDI@energy, e.g. "E_0594".
response_code: StringResponse code from that tree, e.g. "A10".
reason: Option<String>§network_operator: Option<MarketPartnerId>NB that now holds the location (when it left this NB’s grid area).
Trait Implementations§
Source§impl Clone for MaloIdentResultNegative
impl Clone for MaloIdentResultNegative
Source§fn clone(&self) -> MaloIdentResultNegative
fn clone(&self) -> MaloIdentResultNegative
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 MaloIdentResultNegative
impl Debug for MaloIdentResultNegative
Source§impl<'de> Deserialize<'de> for MaloIdentResultNegative
impl<'de> Deserialize<'de> for MaloIdentResultNegative
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 MaloIdentResultNegative
impl PartialEq for MaloIdentResultNegative
Source§fn eq(&self, other: &MaloIdentResultNegative) -> bool
fn eq(&self, other: &MaloIdentResultNegative) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MaloIdentResultNegative
impl Serialize for MaloIdentResultNegative
impl StructuralPartialEq for MaloIdentResultNegative
Auto Trait Implementations§
impl Freeze for MaloIdentResultNegative
impl RefUnwindSafe for MaloIdentResultNegative
impl Send for MaloIdentResultNegative
impl Sync for MaloIdentResultNegative
impl Unpin for MaloIdentResultNegative
impl UnsafeUnpin for MaloIdentResultNegative
impl UnwindSafe for MaloIdentResultNegative
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