liter 0.0.8

Experimental library for using SQLite with minimal SQL
Documentation
use liter_derive::impl_tuple;

pub use marker::Marker;

pub mod marker {
	pub struct One;
	pub struct Many;

	pub trait Marker: private::Sealed {}
	impl Marker for One {}
	impl Marker for Many {}
	mod private {
		pub trait Sealed {}
		impl Sealed for super::One {}
		impl Sealed for super::Many {}
	}
}

pub trait Tuple<M: Marker>: private::Sealed<M> {
	type Ref<'l> where Self: 'l;
	type Mut<'l> where Self: 'l;
	fn take_ref(&self) -> Self::Ref<'_>;
}

pub trait CloneFromRef<M: Marker>: Tuple<M> {
	fn clone_from_ref(from: Self::Ref<'_>) -> Self;
}

mod private {
	use super::*;
	pub trait Sealed<M> {}
	impl<T> Sealed<marker::One> for T {}
	#[impl_tuple(2..=16)]
	impl Sealed<marker::Many> for Each!(T) {}
}

impl<T> Tuple<marker::One> for T {
	type Ref<'l> = &'l T where Self: 'l;
	type Mut<'l> = &'l mut T where Self: 'l;
	fn take_ref(&self) -> Self::Ref<'_> {self}
}

#[impl_tuple(2..=16)]
impl Tuple<marker::Many> for Each!(T) {
	type Ref<'l> = Each!(T => &'l T) where Self: 'l;
	type Mut<'l> = Each!(T => &'l mut T) where Self: 'l;

	/// `&(A, B, C)` → `(&A, &B, &C)`
	fn take_ref(&self) -> Self::Ref<'_> {
		each!{ref field => field}
	}
}

impl<T: 'static> CloneFromRef<marker::One> for T
	where T: for<'x> Tuple<marker::One, Ref<'x> = &'x T> + Clone
{
	fn clone_from_ref(from: Self::Ref<'_>) -> Self where Self: 'static {
		from.clone()
	}
}

#[impl_tuple(2..=16)]
impl CloneFromRef<marker::Many> for Each!(T)
	where Self: for<'x> Tuple<marker::Many, Ref<'x> = Each!(T => &'x T)>,
		Every!(T => T: 'static + Clone): '_
{
	fn clone_from_ref(from: Self::Ref<'_>) -> Self where Self: 'static {
		each!(@from, thing => thing.clone())
	}
}