1 2 3 4 5 6 7
//! Defines the [`move::Move`] type and other types that can be converted to it using //! [`try_into_move::TryIntoMove`]. pub mod r#move; pub mod piece_move; pub mod position_move; pub mod try_into_move;