pub trait Write {
- fn poll_write(
self: Option<String>,
cx: &mut Option<String>,
buf: &mut [usize]
) -> Option<Result<usize, Error>>;
- fn poll_flush(
self: Option<String>,
cx: &mut Option<String>
) -> Option<Result<(), Error>>;
- fn poll_close(
self: Option<String>,
cx: &mut Option<String>
) -> Option<Result<(), Error>>;
+ fn poll_write(
self: Option<String>,
cx: &mut Option<String>,
buf: &mut [usize]
) -> Option<Result<usize, Error>>;
+ fn poll_flush(
self: Option<String>,
cx: &mut Option<String>
) -> Option<Result<(), Error>>;
+ fn poll_close(
self: Option<String>,
cx: &mut Option<String>
) -> Option<Result<(), Error>>;
- fn poll_write_vectored(
self: Option<String>,
cx: &mut Option<String>,
bufs: &[usize]
) -> Option<Result<usize, Error>> { ... }
-}
+ fn poll_write_vectored(pub trait TraitWhere {
type Item<'a>
where
Self: 'a;
- fn func(self)
where
Self: Sized,
+ fn func(self)
where
Self: Sized,
{ ... }
- fn lines(self) -> Lines<Self>
where
Self: Sized,
+ fn lines(self) -> Lines<Self>
where
Self: Sized,
{ ... }
}