Trait de_lobby::db::FromRow

source ·
pub(crate) trait FromRow
where Self: Sized,
{ type Error; // Required method fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>; }

Required Associated Types§

Required Methods§

source

fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FromRow for GameConfig

§

type Error = Error

source§

fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>

source§

impl FromRow for GameMap

§

type Error = Error

source§

fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>

source§

impl FromRow for GamePartial

§

type Error = Error

source§

fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>

source§

impl FromRow for GamePlayer

§

type Error = Error

source§

fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>

source§

impl FromRow for GameSetup

§

type Error = Error

source§

fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>

source§

impl FromRow for User

§

type Error = Error

source§

fn try_from_row(row: SqliteRow) -> Result<Self, Self::Error>

Implementors§