pub struct SwiftGeneralError {
pub code: String,
pub field: String,
pub value: String,
pub message: String,
pub category: Option<String>,
pub context: Option<String>,
}Expand description
G-Series: General/Field Validation Error
Fields§
§code: StringSWIFT error code (e.g., “G001”, “G050”)
field: StringField tag where error occurred
value: StringInvalid value that caused the error
message: StringHuman-readable error message
category: Option<String>MT category context (1-9 or Common)
context: Option<String>Additional context for error recovery
Trait Implementations§
Source§impl Clone for SwiftGeneralError
impl Clone for SwiftGeneralError
Source§fn clone(&self) -> SwiftGeneralError
fn clone(&self) -> SwiftGeneralError
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 SwiftGeneralError
impl Debug for SwiftGeneralError
Source§impl<'de> Deserialize<'de> for SwiftGeneralError
impl<'de> Deserialize<'de> for SwiftGeneralError
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 SwiftGeneralError
impl Display for SwiftGeneralError
Source§impl Error for SwiftGeneralError
impl Error for SwiftGeneralError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SwiftGeneralError
impl RefUnwindSafe for SwiftGeneralError
impl Send for SwiftGeneralError
impl Sync for SwiftGeneralError
impl Unpin for SwiftGeneralError
impl UnsafeUnpin for SwiftGeneralError
impl UnwindSafe for SwiftGeneralError
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