From 9739318498f8b78788923986d77a7b436d6af12a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 27 Oct 2019 07:54:26 -0400 Subject: make the poll_write api a bit more consistent --- src/error.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/error.rs') diff --git a/src/error.rs b/src/error.rs index 923ad4f..aa315e6 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,6 +1,9 @@ #[derive(Debug, snafu::Snafu)] #[snafu(visibility(pub))] pub enum Error { + #[snafu(display("eof"))] + EOF, + #[snafu(display("failed to create ttyrec frame: got {} bytes of data, but ttyrec frames can be at most {} bytes", input, u32::max_value()))] FrameTooBig { input: usize }, -- cgit v1.2.3-54-g00ecf