pub struct Error {}
use error::*;
pub mod error;
use orthanc::Error; ->
error[E0603]: struct `Error` is private
--> tests/test.rs:3:14
|
3 | use orthanc::Error;
| ^^^^^ private struct
|
note: the struct `Error` is defined here
--> /home/ay/projects/personal/orthanc-rs/src/lib.rs:66:5
|
66 | use error::*;
| ^^^^^^^^