Trait Writer
Source pub trait Writer: WritePreReqs {
Show 13 methods
// Provided methods
fn write_u8<'life0, 'async_trait>(
&'life0 mut self,
data: u8,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_u16<'life0, 'async_trait>(
&'life0 mut self,
data: u16,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_u32<'life0, 'async_trait>(
&'life0 mut self,
data: u32,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_u64<'life0, 'async_trait>(
&'life0 mut self,
data: u64,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_u128<'life0, 'async_trait>(
&'life0 mut self,
data: u128,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_i8<'life0, 'async_trait>(
&'life0 mut self,
data: i8,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_i16<'life0, 'async_trait>(
&'life0 mut self,
data: i16,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_i32<'life0, 'async_trait>(
&'life0 mut self,
data: i32,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_i64<'life0, 'async_trait>(
&'life0 mut self,
data: i64,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_i128<'life0, 'async_trait>(
&'life0 mut self,
data: i128,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_f32<'life0, 'async_trait>(
&'life0 mut self,
data: f32,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_f64<'life0, 'async_trait>(
&'life0 mut self,
data: f64,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn write_string<'life0, 'async_trait>(
&'life0 mut self,
data: String,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
}