usestd::io;usethiserror::Error;/**
Error enum for miette. Used by certain operations in the protocol.
*/#[derive(Debug, Error)]pubenumMietteError{#[error(transparent)]
IoError(#[from]io::Error),#[error("The given offset is outside the bounds of its Source")]
OutOfBounds,}