graphics-error 0.1.0

The representation of a circle
Documentation
1
2
3
4
5
6
7
use super::*;

impl From<std::io::Error> for GraphicsError {
    fn from(e: std::io::Error) -> Self {
        Self { kind: GraphicsErrorKind::IOError(e), line: 0, column: 0, file: None }
    }
}