webm_iterable::errors

Enum TagWriterError

Source
pub enum TagWriterError {
    UnexpectedTag {
        tag_id: u64,
        current_path: Vec<u64>,
    },
    TagIdError(u64),
    TagSizeError(String),
    UnexpectedClosingTag {
        tag_id: u64,
        expected_id: Option<u64>,
    },
    WriteError {
        source: Error,
    },
}
Expand description

Errors that can occur when writing ebml data.

Variants§

§

UnexpectedTag

An error indicating the tag to be written doesn’t conform to the current specification.

This error occurs if you attempt to write a tag outside of a valid document path. See the EBML RFC for details on element paths.

Fields

§tag_id: u64
§current_path: Vec<u64>
§

TagIdError(u64)

An error with a tag id.

This error should only occur if writing “RawTag” variants, and only if the input id is not a valid vint.

§

TagSizeError(String)

An error with the size of a tag.

Can occur if the tag size overflows the max value representable by a vint (2^57 - 1, or 144,115,188,075,855,871).

This can also occur if a non-Master tag is sent to be written with an unknown size.

§

UnexpectedClosingTag

An error indicating a tag was closed unexpectedly.

Can occur if a Master::End variant is passed to the TagWriter but the id doesn’t match the currently open tag.

Fields

§tag_id: u64

The id of the tag being closed.

§expected_id: Option<u64>

The id of the currently open tag.

§

WriteError

An error that wraps an IO error when writing to the underlying destination.

Fields

§source: Error

Trait Implementations§

Source§

impl Debug for TagWriterError

Source§

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

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

impl Display for TagWriterError

Source§

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

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

impl Error for TagWriterError

Source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

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<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> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.