1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum CStrError { 5 #[error("format failed")] 6 FormatError(#[from] core::fmt::Error), 7 #[error("buffer overflow")] 8 OverflowError(#[from] arrayvec::CapacityError<char>), 9}