pub enum DecisionType {
Accepted,
Rejected,
GoodWill,
PartiallyAccepted,
}Expand description
DecisionType : Summary result of decision on a complaint - ACCEPTED: the complaint is accepted and refund or compensation will be paid - REJECTED: the complaint is rejected and no refund or compensation will be paid - GOOD_WILL: a good will compensation is offered, no legal obligation to pay refund or compensation exists - PARTIALLY_ACCEPTED: the complaint is partially accepted, e.g. for part of the journey or part of the passengers
Summary result of decision on a complaint - ACCEPTED: the complaint is accepted and refund or compensation will be paid - REJECTED: the complaint is rejected and no refund or compensation will be paid - GOOD_WILL: a good will compensation is offered, no legal obligation to pay refund or compensation exists - PARTIALLY_ACCEPTED: the complaint is partially accepted, e.g. for part of the journey or part of the passengers
Variants§
Trait Implementations§
Source§impl Clone for DecisionType
impl Clone for DecisionType
Source§fn clone(&self) -> DecisionType
fn clone(&self) -> DecisionType
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DecisionType
impl Debug for DecisionType
Source§impl Default for DecisionType
impl Default for DecisionType
Source§fn default() -> DecisionType
fn default() -> DecisionType
Source§impl<'de> Deserialize<'de> for DecisionType
impl<'de> Deserialize<'de> for DecisionType
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>,
Source§impl Display for DecisionType
impl Display for DecisionType
Source§impl Hash for DecisionType
impl Hash for DecisionType
Source§impl Ord for DecisionType
impl Ord for DecisionType
Source§fn cmp(&self, other: &DecisionType) -> Ordering
fn cmp(&self, other: &DecisionType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for DecisionType
impl PartialEq for DecisionType
Source§fn eq(&self, other: &DecisionType) -> bool
fn eq(&self, other: &DecisionType) -> bool
self and other values to be equal, and is used by ==.