toql_core 0.4.2

Library with core functionality for Toql
Documentation
1
2
3
4
5
6
7
8
9
//! Error type for TryInto.

/// Tuple struct that holds the [SqlArg](super::SqlArg) that could not be converted
/// into the desired datatype.
use thiserror::Error;

#[derive(Error, Debug)]
#[error("unable to convert `{0}` into desired type")]
pub struct TryFromSqlArgError(pub super::SqlArg);