limited visibility of method from_bitmovetype from enum MoveType to pub(in super)

This commit is contained in:
Varga Dávid Lajos
2025-11-21 12:57:38 +01:00
parent 5e65bcf5ef
commit d649afdcfd

View File

@@ -11,7 +11,7 @@ pub enum MoveType {
}
impl MoveType {
pub fn from_bitmovetype(move_type: BitMoveType) -> Self {
pub(in super) fn from_bitmovetype(move_type: BitMoveType) -> Self {
return match move_type {
BitMoveType::Quiet => Self::Quiet,
BitMoveType::Capture => Self::Capture,