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 · 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 · 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§impl PartialOrd for DecisionType
impl PartialOrd for DecisionType
Source§impl Serialize for DecisionType
impl Serialize for DecisionType
impl Copy for DecisionType
impl Eq for DecisionType
impl StructuralPartialEq for DecisionType
Auto Trait Implementations§
impl Freeze for DecisionType
impl RefUnwindSafe for DecisionType
impl Send for DecisionType
impl Sync for DecisionType
impl Unpin for DecisionType
impl UnwindSafe for DecisionType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.