rorm 0.10.0

A asynchronous declarative ORM written in pure rust.
Documentation
//! This module holds the high level model representation
//!
//! It adds:
//! - [`annotations`]: a type level version of [`imr::Annotation`](crate::imr::Annotation) to be used in generic type bound checks
//!
//! These features are split into different submodules to avoid name conflicts.

pub mod annotations;

/// Trait for converting a hmr type into a imr one
pub trait AsImr {
    /// Imr type to convert to
    type Imr;

    /// Convert to imr type
    fn as_imr(&self) -> Self::Imr;
}

/// Location in the source code a model or field originates from
/// Used for better error messages in the migration tool
#[derive(Copy, Clone)]
pub struct Source {
    /// Filename of the source code of the model or field
    pub file: &'static str,
    /// Line of the model or field
    pub line: usize,
    /// Column of the model or field
    pub column: usize,
}

impl AsImr for Source {
    type Imr = crate::imr::Source;

    fn as_imr(&self) -> Self::Imr {
        crate::imr::Source {
            file: self.file.to_string(),
            line: self.line,
            column: self.column,
        }
    }
}