pub enum FstWriteError {
Io(Error),
StringTooLong(usize, String),
TimeDecrease(u64, u64),
InvalidSignalId(FstSignalId),
InvalidCharacter(char),
}Variants§
Io(Error)
StringTooLong(usize, String)
TimeDecrease(u64, u64)
InvalidSignalId(FstSignalId)
InvalidCharacter(char)
Trait Implementations§
Source§impl Debug for FstWriteError
impl Debug for FstWriteError
Source§impl Display for FstWriteError
impl Display for FstWriteError
Source§impl Error for FstWriteError
impl Error for FstWriteError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
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
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for FstWriteError
impl !RefUnwindSafe for FstWriteError
impl Send for FstWriteError
impl Sync for FstWriteError
impl Unpin for FstWriteError
impl !UnwindSafe for FstWriteError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more