mirror of
https://github.com/italicsjenga/valence.git
synced 2024-12-23 14:31:30 +11:00
cargo fmt
This commit is contained in:
parent
f35d8e7b13
commit
b5a88be024
|
@ -1,6 +1,7 @@
|
|||
#![forbid(unsafe_code)]
|
||||
|
||||
mod aabb;
|
||||
pub mod block;
|
||||
mod block_pos;
|
||||
mod byte_angle;
|
||||
mod chunk;
|
||||
|
@ -19,7 +20,6 @@ pub mod util;
|
|||
mod var_int;
|
||||
mod var_long;
|
||||
mod world;
|
||||
pub mod block;
|
||||
|
||||
pub use aabb::Aabb;
|
||||
pub use chunk::{Chunk, ChunkPos};
|
||||
|
|
|
@ -120,8 +120,8 @@ struct NewClientMessage {
|
|||
reply: oneshot::Sender<anyhow::Result<ClientPacketChannels>>,
|
||||
}
|
||||
|
||||
/// The result type returned from [`ServerConfig::start`] after the server is shut
|
||||
/// down.
|
||||
/// The result type returned from [`ServerConfig::start`] after the server is
|
||||
/// shut down.
|
||||
pub type ShutdownResult = Result<(), ShutdownError>;
|
||||
pub type ShutdownError = Box<dyn Error + Send + Sync + 'static>;
|
||||
|
||||
|
|
Loading…
Reference in a new issue