xloop_android 0.1.0

android impl for xloop.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug)]
pub struct Error;
impl std::fmt::Display for Error {
	fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
		f.write_str("Error ios")
	}
}
impl std::error::Error for Error {
	fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
		None
	}
}