Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/scroll/src/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  error.rs

  Sprache: Rust
 

use core::fmt::{self, Display};
use core::result;
#[cfg(feature = "std")]
use std::{error, io};

#[derive(Debug)]
/// A custom Scroll error
pub enum Error {
    /// The type you tried to read was too big
    TooBig {
        size: usize,
        len: usize,
    },
    /// The requested offset to read/write at is invalid
    BadOffset(usize),
    BadInput {
        size: usize,
        msg: &'static str,
    },
    /// A custom Scroll error for reporting messages to clients.
    /// For no-std, use [`Error::BadInput`] with a static string.
    #[cfg(feature = "std")]
    Custom(String),
    /// Returned when IO based errors are encountered
    #[cfg(feature = "std")]
    IO(io::Error),
}

#[cfg(feature = "std")]
impl error::Error for Error {
    fn description(&self) -> &str {
        match self {
            Error::TooBig { .. } => "TooBig",
            Error::BadOffset(_) => "BadOffset",
            Error::BadInput { .. } => "BadInput",
            Error::Custom(_) => "Custom",
            Error::IO(_) => "IO",
        }
    }
    fn cause(&self) -> Option<&dyn error::Error> {
        match self {
            Error::TooBig { .. } => None,
            Error::BadOffset(_) => None,
            Error::BadInput { .. } => None,
            Error::Custom(_) => None,
            Error::IO(ref io) => io.source(),
        }
    }
}

#[cfg(feature = "std")]
impl From<io::Error> for Error {
    fn from(err: io::Error) -> Error {
        Error::IO(err)
    }
}

impl Display for Error {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Error::TooBig { ref size, ref len } => {
                write!(fmt, "type is too big ({size}) for {len}")
            }
            Error::BadOffset(ref offset) => {
                write!(fmt, "bad offset {offset}")
            }
            Error::BadInput { ref msg, ref size } => {
                write!(fmt, "bad input {msg} ({size})")
            }
            #[cfg(feature = "std")]
            Error::Custom(ref msg) => {
                write!(fmt, "{msg}")
            }
            #[cfg(feature = "std")]
            Error::IO(ref err) => {
                write!(fmt, "{err}")
            }
        }
    }
}

pub type Result<T> = result::Result<T, Error>;

Messung V0.5 in Prozent
C=92 H=99 G=95

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-19) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.