mutation is having the same issue I was facing in #30 where I for some reason cannot return a &'a MutationState and can only return it as 'static or &'a mut. Who knows why that is happening, but seeing as it definitely shouldn't be &mut, I am sucking it up and forcing the T: Clone bound for now.
mutation
is having the same issue I was facing in #30 where I for some reason cannot return a&'a MutationState
and can only return it as'static
or&'a mut
. Who knows why that is happening, but seeing as it definitely shouldn't be&mut
, I am sucking it up and forcing theT: Clone
bound for now.