1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
use std::fmt;
use std::marker::PhantomData;
use super::Waker;
pub struct Sender<S, Item, F, R> {
s: S,
f: F,
_item: PhantomData<Item>,
_r: PhantomData<R>,
}
impl<S, Item, F, R> Clone for Sender<S, Item, F, R>
where
S: Clone,
F: Clone,
{
#[inline]
fn clone(&self) -> Self {
Self {
s: self.s.clone(),
f: self.f.clone(),
_item: PhantomData,
_r: PhantomData,
}
}
}
impl<S, Item, F, R> fmt::Debug for Sender<S, Item, F, R>
where
S: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Sender").field("stream", &self.s).finish()
}
}
impl<S, Item, F, R> Sender<S, Item, F, R>
where
S: Waker,
F: Fn(&mut S, Item) -> R,
{
#[inline]
pub(super) fn new(s: S, f: F) -> Self {
Self {
s,
f,
_item: PhantomData,
_r: PhantomData,
}
}
#[inline]
pub fn send(&mut self, v: Item) -> R {
let res = (self.f)(&mut self.s, v);
self.s.wake();
res
}
}
impl<S, Item, F, R> std::convert::AsMut<S> for Sender<S, Item, F, R> {
#[inline]
fn as_mut(&mut self) -> &mut S {
&mut self.s
}
}
impl<S, Item, F, R> std::convert::AsRef<S> for Sender<S, Item, F, R> {
#[inline]
fn as_ref(&self) -> &S {
&self.s
}
}