pub enum Material<T>{
Next(T),
Error(RxError),
Complete,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Material<T>where
T: Freeze,
impl<T> !RefUnwindSafe for Material<T>
impl<T> Send for Material<T>
impl<T> Sync for Material<T>
impl<T> Unpin for Material<T>where
T: Unpin,
impl<T> !UnwindSafe for Material<T>
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