Enum dicom_encoding::text::DecodeTextError [−][src]
#[non_exhaustive]
pub enum DecodeTextError {
DecodeCustom {
message: Cow<'static, str>,
backtrace: Backtrace,
},
}An error type for text decoding issues.
Variants (Non-exhaustive)
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
A custom error message, for when the underlying error type does not encode error semantics into type variants.
Show fields
Trait Implementations
impl Display for DecodeTextError[src]
impl Display for DecodeTextError[src]impl Error for DecodeTextError where
Self: Debug + Display, [src]
impl Error for DecodeTextError where
Self: Debug + Display, [src]impl ErrorCompat for DecodeTextError[src]
impl ErrorCompat for DecodeTextError[src]Auto Trait Implementations
impl RefUnwindSafe for DecodeTextError
impl RefUnwindSafe for DecodeTextErrorimpl Send for DecodeTextError
impl Send for DecodeTextErrorimpl Sync for DecodeTextError
impl Sync for DecodeTextErrorimpl Unpin for DecodeTextError
impl Unpin for DecodeTextErrorimpl UnwindSafe for DecodeTextError
impl UnwindSafe for DecodeTextError