[][src]Struct sudoku_backend::ops::BoardMessage

pub struct BoardMessage {
    pub board_id: i32,
    pub board_skeleton: String,
    pub solved_board: Option<String>,
}

The message sent to and from the client on acquisiion/submission of solved board

Consult doc/sudoku.md

Fields

ID of the full original board

The skeleton to be solved by the user

The solved board from the skeleton, to be present only on board submit

Trait Implementations

impl PartialEq<BoardMessage> for BoardMessage
[src]

impl Clone for BoardMessage
[src]

Performs copy-assignment from source. Read more

impl Ord for BoardMessage
[src]

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Eq for BoardMessage
[src]

impl PartialOrd<BoardMessage> for BoardMessage
[src]

impl Debug for BoardMessage
[src]

impl Hash for BoardMessage
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Serialize for BoardMessage
[src]

impl<'de> Deserialize<'de> for BoardMessage
[src]

impl<'rocket> FromForm<'rocket> for BoardMessage
[src]

The associated error to be returned when parsing fails.

Auto Trait Implementations

impl Send for BoardMessage

impl Sync for BoardMessage

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Typeable for T where
    T: Any
[src]

Get the TypeId of this object.

impl<T> IntoSql for T
[src]

Convert self to an expression for Diesel's query builder. Read more

Convert &self to an expression for Diesel's query builder. Read more