[−][src]Struct ttv_chat::Encoder
A synchronous encoder
Implementations
impl<W> Encoder<W> where
W: Write, [src]
W: Write,
pub fn new(writer: W) -> Encoder<W>ⓘ[src]
Create a new Encoder over this std::io::Write instance
pub fn into_inner(self) -> W[src]
Get the inner std::io::Write instance out
pub fn encode<M>(&mut self, msg: M) -> Result<(), Error> where
M: Encodable, [src]
M: Encodable,
Encode this Encodable message to the writer and flushes it.
Trait Implementations
impl<W> Clone for Encoder<W> where
W: Clone, [src]
W: Clone,
impl<W> Debug for Encoder<W>[src]
impl<W> Write for Encoder<W> where
W: Write, [src]
W: Write,
fn write(&mut self, buf: &[u8]) -> Result<usize, Error>[src]
fn flush(&mut self) -> Result<(), Error>[src]
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>1.36.0[src]
fn is_write_vectored(&self) -> bool[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>[src]
fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>1.0.0[src]
fn by_ref(&mut self) -> &mut Self1.0.0[src]
Auto Trait Implementations
impl<W> RefUnwindSafe for Encoder<W> where
W: RefUnwindSafe,
W: RefUnwindSafe,
impl<W> Send for Encoder<W> where
W: Send,
W: Send,
impl<W> Sync for Encoder<W> where
W: Sync,
W: Sync,
impl<W> Unpin for Encoder<W> where
W: Unpin,
W: Unpin,
impl<W> UnwindSafe for Encoder<W> where
W: UnwindSafe,
W: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<'a, W> PrivmsgExt for W where
W: Write + ?Sized, [src]
W: Write + ?Sized,
fn reply(&mut self, msg: &Privmsg<'_>, data: &str) -> Result<(), Error>[src]
fn say(&mut self, msg: &Privmsg<'_>, data: &str) -> Result<(), Error>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
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>,