hyper_static_server/
builder_errors.rs

1
2
3#[ allow (unused_imports) ]
4pub(crate) use crate::hss::{
5		
6		error_with_code,
7		error_with_format,
8		error_with_message,
9		
10		ResultExtWrap as _,
11		ResultExtPanic as _,
12		ErrorExtWrap as _,
13		
14	};
15
16
17
18
19pub type BuilderResult<V = ()> = ::std::result::Result<V, BuilderError>;
20pub type BuilderError = ::std::io::Error;
21
22