hecs-schedule 0.4.3

Provides shedulable systems and parallel execution for hecs
Documentation
///! This module works around the lifetimes for borrow when GAT isn't available
use crate::{Read, SubWorld, Write};

use super::{ContextBorrow, MaybeRead, MaybeWrite};

use hecs::Component;

/// Lifetime erasure in waiting of GAT
pub trait IntoBorrow {
    /// The borrow type
    type Borrow: for<'x> ContextBorrow<'x>;
}

/// Macro for implementing lifetime eliding IntoBorrow
#[macro_export]
macro_rules! impl_into_borrow {
    ($generic: tt, $name: tt => $borrower: tt) => {
        #[doc(hidden)]
        pub struct $borrower<T: $generic>(std::marker::PhantomData<T>);

        impl<T: $generic> $crate::borrow::IntoBorrow for $name<'_, T> {
            type Borrow = $borrower<T>;
        }

        impl<'a, T: $generic> $crate::borrow::ContextBorrow<'a> for $borrower<T> {
            type Target = $name<'a, T>;

            fn borrow(context: &'a $crate::Context) -> $crate::error::Result<Self::Target> {
                Self::Target::borrow(context)
            }
        }
    };
}

impl_into_borrow!(Component, Read => Borrower);
impl_into_borrow!(Component, Write => BorrowMut);
impl_into_borrow!(Component, MaybeRead => MaybeBorrower);
impl_into_borrow!(Component, MaybeWrite => MaybeBorrowerMut);
impl_into_borrow!(Component, SubWorld => SubWorldBorrower);