update ServiceFactory api

This commit is contained in:
Nikolay Kim 2021-12-24 03:53:39 +06:00
parent 359d94fd5a
commit f0f899a36e
12 changed files with 71 additions and 123 deletions

View file

@ -185,11 +185,7 @@ impl IoRef {
/// Encode and write item to a buffer and wake up write task
///
/// Returns write buffer state, false is returned if write buffer if full.
pub fn encode<U>(
&self,
item: U::Item,
codec: &U,
) -> Result<bool, <U as Encoder>::Error>
pub fn encode<U>(&self, item: U::Item, codec: &U) -> Result<bool, <U as Encoder>::Error>
where
U: Encoder,
{