use crate::model::Point; impl From for session_sharing_protocol::common::Point { fn from(val: Point) -> Self { session_sharing_protocol::common::Point { row: val.row, col: val.col, } } } impl From for Point { fn from(value: session_sharing_protocol::common::Point) -> Self { Self { row: value.row, col: value.col, } } }