[−][src]Struct tower_grpc::generic::Encode
Encodes gRPC message types
Trait Implementations
impl<T: Debug, U: Debug> Debug for Encode<T, U>
[src]
impl<T, U> Body for Encode<T, U> where
T: Encoder<Item = U::Item>,
U: Stream,
U::Error: Into<Box<dyn Error + Send + Sync>>,
[src]
T: Encoder<Item = U::Item>,
U: Stream,
U::Error: Into<Box<dyn Error + Send + Sync>>,
type Data = <Bytes as IntoBuf>::Buf
Values yielded by the Body
.
type Error = Status
The error type this BufStream
might generate.
fn is_end_stream(&self) -> bool
[src]
fn poll_data(&mut self) -> Poll<Option<Self::Data>, Status>
[src]
fn poll_trailers(&mut self) -> Poll<Option<HeaderMap>, Status>
[src]
fn size_hint(&self) -> SizeHint
[src]
Returns the bounds on the remaining length of the stream. Read more
Auto Trait Implementations
impl<T, U> Unpin for Encode<T, U> where
T: Unpin,
U: Unpin,
T: Unpin,
U: Unpin,
impl<T, U> Sync for Encode<T, U> where
T: Sync,
U: Sync,
T: Sync,
U: Sync,
impl<T, U> Send for Encode<T, U> where
T: Send,
U: Send,
T: Send,
U: Send,
impl<T, U> UnwindSafe for Encode<T, U> where
T: UnwindSafe,
U: UnwindSafe,
T: UnwindSafe,
U: UnwindSafe,
impl<T, U> RefUnwindSafe for Encode<T, U> where
T: RefUnwindSafe,
U: RefUnwindSafe,
T: RefUnwindSafe,
U: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Body for T where
T: BufStream,
[src]
T: BufStream,
type Data = <T as BufStream>::Item
Values yielded by the Body
.
type Error = <T as BufStream>::Error
The error type this BufStream
might generate.
fn poll_data(
&mut self
) -> Result<Async<Option<<T as Body>::Data>>, <T as Body>::Error>
[src]
&mut self
) -> Result<Async<Option<<T as Body>::Data>>, <T as Body>::Error>
fn size_hint(&self) -> SizeHint
[src]
fn poll_trailers(
&mut self
) -> Result<Async<Option<HeaderMap<HeaderValue>>>, <T as Body>::Error>
[src]
&mut self
) -> Result<Async<Option<HeaderMap<HeaderValue>>>, <T as Body>::Error>
fn is_end_stream(&self) -> bool
[src]
impl<T> BodyExt for T where
T: Body,
[src]
T: Body,
fn into_buf_stream(self) -> IntoBufStream<Self>
[src]
Wrap the Body
so that it implements tokio_buf::BufStream directly.