cleu-orm 0.1.0

Object–relational mapping
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::FullAssociation;

/// Groups tuples that form all associations of a table
pub trait Associations {
  /// See [Associations::full_associations]
  type FullAssociations<'x>: Iterator<Item = FullAssociation<'x>>;

  /// Yields all table associations
  fn full_associations(&self) -> Self::FullAssociations<'_>;
}