pub struct TerminationError {
pub id: Option<String>,
pub value: Option<String>,
}Expand description
This indicates an error that caused a qualificationItem to be terminated.
Fields§
§id: Option<String>Unique identifier of the termination error
value: Option<String>Text to describe the termination error - for example: Unable to proceed to qualification because incomplete information provided
Trait Implementations§
Source§impl Clone for TerminationError
impl Clone for TerminationError
Source§fn clone(&self) -> TerminationError
fn clone(&self) -> TerminationError
Returns a duplicate of the value. Read more
1.0.0 · 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 TerminationError
impl Debug for TerminationError
Source§impl Default for TerminationError
impl Default for TerminationError
Source§fn default() -> TerminationError
fn default() -> TerminationError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TerminationError
impl<'de> Deserialize<'de> for TerminationError
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 Display for TerminationError
impl Display for TerminationError
Auto Trait Implementations§
impl Freeze for TerminationError
impl RefUnwindSafe for TerminationError
impl Send for TerminationError
impl Sync for TerminationError
impl Unpin for TerminationError
impl UnsafeUnpin for TerminationError
impl UnwindSafe for TerminationError
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