feat: implement clone for IntoPipeSystem (#20108)

# Objective

Implement `Clone` for `IntoPipeSystem`, allowing for `T: IntoSystem +
Clone` patterns.


## Precedence

Same clone implementation/docs as `CombinatorSystem`
This commit is contained in:
Pete Hayman 2025-07-15 07:38:51 +10:00 committed by GitHub
parent 4e9e78c31e
commit 6671575eb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -252,6 +252,7 @@ where
}
/// An [`IntoSystem`] creating an instance of [`PipeSystem`].
#[derive(Clone)]
pub struct IntoPipeSystem<A, B> {
a: A,
b: B,