Trait sea_orm::TryFromU64

source ·
pub trait TryFromU64: Sized {
    fn try_from_u64(n: u64) -> Result<Self, DbErr>;
}
Expand description

Try to convert a type to a u64

Required Methods

The method to convert the type to a u64

Implementations on Foreign Types

Implementors