[][src]Trait tower_grpc::client::Encodable

pub trait Encodable<T> {
    fn into_encode(self) -> T;
}

Convert a stream of protobuf messages to an HTTP body payload.

Required methods

fn into_encode(self) -> T

Loading content...

Implementors

impl<T, U> Encodable<BoxBody> for T where
    T: Stream<Item = U, Error = Status> + Send + 'static,
    U: Message + 'static, 
[src]

Loading content...