pub enum VcdDumpError {
InvalidTimescale(u128),
TimestampsOutOfOrder(u128, u128),
}
Expand description
Errors relating to VCD encoding/dumping
Variants§
Trait Implementations§
Source§impl Debug for VcdDumpError
impl Debug for VcdDumpError
Source§impl Display for VcdDumpError
impl Display for VcdDumpError
Source§impl Error for VcdDumpError
impl Error for VcdDumpError
1.30.0 · 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 VcdDumpError
impl RefUnwindSafe for VcdDumpError
impl Send for VcdDumpError
impl Sync for VcdDumpError
impl Unpin for VcdDumpError
impl UnwindSafe for VcdDumpError
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