pub struct EventStream<E> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<E: Clone> Clone for EventStream<E>
impl<E: Clone> Clone for EventStream<E>
Source§fn clone(&self) -> EventStream<E>
fn clone(&self) -> EventStream<E>
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 moreSource§impl<E: Debug> Debug for EventStream<E>
impl<E: Debug> Debug for EventStream<E>
Source§impl<E: Default> Default for EventStream<E>
impl<E: Default> Default for EventStream<E>
Source§fn default() -> EventStream<E>
fn default() -> EventStream<E>
Returns the “default value” for a type. Read more
Source§impl<'a, E> IntoIterator for &'a EventStream<E>
impl<'a, E> IntoIterator for &'a EventStream<E>
Source§impl<E: PartialEq> PartialEq for EventStream<E>
impl<E: PartialEq> PartialEq for EventStream<E>
Source§fn eq(&self, other: &EventStream<E>) -> bool
fn eq(&self, other: &EventStream<E>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<E: Eq> Eq for EventStream<E>
impl<E> StructuralPartialEq for EventStream<E>
Auto Trait Implementations§
impl<E> Freeze for EventStream<E>
impl<E> RefUnwindSafe for EventStream<E>where
E: RefUnwindSafe,
impl<E> Send for EventStream<E>where
E: Send,
impl<E> Sync for EventStream<E>where
E: Sync,
impl<E> Unpin for EventStream<E>where
E: Unpin,
impl<E> UnsafeUnpin for EventStream<E>
impl<E> UnwindSafe for EventStream<E>where
E: 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