Skip to main content

ErrorCode

Enum ErrorCode 

Source
#[repr(i32)]
pub enum ErrorCode {
Show 17 variants None = 0, UnknownState = 1, StreamInitFailed = 2, StreamReadOnly = 3, InvalidAsdfHeader = 4, UnexpectedEof = 5, InvalidBlockHeader = 6, BlockMagicMismatch = 7, YamlParserInitFailed = 8, YamlParseFailed = 9, OutOfMemory = 10, System = 11, InvalidArgument = 12, UnknownCompression = 13, CompressionFailed = 14, ExtensionNotFound = 15, OverLimit = 16,
}
Expand description

The error codes asdf_error_code reports.

The discriminants are part of the C ABI and must not be reordered.

Variants§

§

None = 0

No error.

§

UnknownState = 1

Unknown parser state.

§

StreamInitFailed = 2

Stream initialization failed.

§

StreamReadOnly = 3

Attempted write to a read-only stream or file.

§

InvalidAsdfHeader = 4

Invalid ASDF file header.

§

UnexpectedEof = 5

Unexpected end of file.

§

InvalidBlockHeader = 6

Invalid block header.

§

BlockMagicMismatch = 7

Block magic bytes did not match.

§

YamlParserInitFailed = 8

YAML parser initialization failed.

§

YamlParseFailed = 9

YAML parsing failed.

§

OutOfMemory = 10

Out of memory.

§

System = 11

OS-level error; the original errno is reported separately.

§

InvalidArgument = 12

Invalid argument.

§

UnknownCompression = 13

Unknown compression type.

§

CompressionFailed = 14

Compression or decompression error.

§

ExtensionNotFound = 15

No serializer registered for an extension.

§

OverLimit = 16

A system limit has been reached.

Trait Implementations§

Source§

impl Clone for ErrorCode

Source§

fn clone(&self) -> ErrorCode

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for ErrorCode

Source§

impl Debug for ErrorCode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for ErrorCode

Source§

impl PartialEq for ErrorCode

Source§

fn eq(&self, other: &ErrorCode) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ErrorCode

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.