pub struct CombineReducers<R>(pub R);Expand description
Runs multiple reducers in order and merges their commands.
Tuple Fields§
§0: RTrait Implementations§
Source§impl<R: Clone> Clone for CombineReducers<R>
impl<R: Clone> Clone for CombineReducers<R>
Source§fn clone(&self) -> CombineReducers<R>
fn clone(&self) -> CombineReducers<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<R: Copy> Copy for CombineReducers<R>
Source§impl<R: Debug> Debug for CombineReducers<R>
impl<R: Debug> Debug for CombineReducers<R>
impl<R: Eq> Eq for CombineReducers<R>
Source§impl<R: PartialEq> PartialEq for CombineReducers<R>
impl<R: PartialEq> PartialEq for CombineReducers<R>
Source§fn eq(&self, other: &CombineReducers<R>) -> bool
fn eq(&self, other: &CombineReducers<R>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<S, A, R1> Reducer for CombineReducers<(R1,)>
impl<S, A, R1> Reducer for CombineReducers<(R1,)>
Source§impl<S, A, R1, R2> Reducer for CombineReducers<(R1, R2)>
impl<S, A, R1, R2> Reducer for CombineReducers<(R1, R2)>
Source§impl<S, A, R1, R2, R3> Reducer for CombineReducers<(R1, R2, R3)>
impl<S, A, R1, R2, R3> Reducer for CombineReducers<(R1, R2, R3)>
Source§impl<S, A, R1, R2, R3, R4> Reducer for CombineReducers<(R1, R2, R3, R4)>
impl<S, A, R1, R2, R3, R4> Reducer for CombineReducers<(R1, R2, R3, R4)>
Source§impl<S, A, R1, R2, R3, R4, R5> Reducer for CombineReducers<(R1, R2, R3, R4, R5)>
impl<S, A, R1, R2, R3, R4, R5> Reducer for CombineReducers<(R1, R2, R3, R4, R5)>
Source§impl<S, A, R1, R2, R3, R4, R5, R6> Reducer for CombineReducers<(R1, R2, R3, R4, R5, R6)>
impl<S, A, R1, R2, R3, R4, R5, R6> Reducer for CombineReducers<(R1, R2, R3, R4, R5, R6)>
impl<R: PartialEq> StructuralPartialEq for CombineReducers<R>
Auto Trait Implementations§
impl<R> Freeze for CombineReducers<R>where
R: Freeze,
impl<R> RefUnwindSafe for CombineReducers<R>where
R: RefUnwindSafe,
impl<R> Send for CombineReducers<R>where
R: Send,
impl<R> Sync for CombineReducers<R>where
R: Sync,
impl<R> Unpin for CombineReducers<R>where
R: Unpin,
impl<R> UnsafeUnpin for CombineReducers<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for CombineReducers<R>where
R: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more