[−][src]Struct quick_protobuf::writer::BytesWriter
A writer backend for byte buffers
Implementations
impl<'a> BytesWriter<'a>
[src]
Trait Implementations
impl<'a> WriterBackend for BytesWriter<'a>
[src]
fn pb_write_u8(&mut self, x: u8) -> Result<()>
[src]
fn pb_write_u32(&mut self, x: u32) -> Result<()>
[src]
fn pb_write_i32(&mut self, x: i32) -> Result<()>
[src]
fn pb_write_f32(&mut self, x: f32) -> Result<()>
[src]
fn pb_write_u64(&mut self, x: u64) -> Result<()>
[src]
fn pb_write_i64(&mut self, x: i64) -> Result<()>
[src]
fn pb_write_f64(&mut self, x: f64) -> Result<()>
[src]
fn pb_write_all(&mut self, buf: &[u8]) -> Result<()>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for BytesWriter<'a>
impl<'a> Send for BytesWriter<'a>
impl<'a> Sync for BytesWriter<'a>
impl<'a> Unpin for BytesWriter<'a>
impl<'a> !UnwindSafe for BytesWriter<'a>
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<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<W> WriterBackend for W where
W: Write,
[src]
W: Write,