protozer0

Struct PbfWriter

Source
pub struct PbfWriter<'a> {
    pub data: &'a mut Vec<u8>,
    /* private fields */
}

Fields§

§data: &'a mut Vec<u8>

Implementations§

Source§

impl<'a> PbfWriter<'a>

Source

pub fn new(data: &'a mut Vec<u8>) -> Self

Source

pub fn clear(&mut self)

Source

pub fn bool(&mut self, field_number: u32, value: bool)

Source

pub fn enum(&mut self, field_number: u32, value: i32)

Source

pub fn int32(&mut self, field_number: u32, value: i32)

Source

pub fn int64(&mut self, field_number: u32, value: i64)

Source

pub fn sint32(&mut self, field_number: u32, value: i32)

Source

pub fn sint64(&mut self, field_number: u32, value: i64)

Source

pub fn uint32(&mut self, field_number: u32, value: u32)

Source

pub fn uint64(&mut self, field_number: u32, value: u64)

Source

pub fn fixed32(&mut self, field_number: u32, value: u32)

Source

pub fn fixed64(&mut self, field_number: u32, value: u64)

Source

pub fn sfixed32(&mut self, field_number: u32, value: i32)

Source

pub fn sfixed64(&mut self, field_number: u32, value: i64)

Source

pub fn float(&mut self, field_number: u32, value: f32)

Source

pub fn double(&mut self, field_number: u32, value: f64)

Source

pub fn bytes(&mut self, field_number: u32, value: &[u8])

Source

pub fn string(&mut self, field_number: u32, value: &str)

Source

pub fn message(&mut self, field_number: u32, value: &[u8])

Source

pub fn submessage(&mut self, field_number: u32)

Source

pub fn submessage_with_size(&mut self, field_number: u32, size: usize)

Source

pub fn rollback(self)

Source

pub fn commit(&mut self)

Auto Trait Implementations§

§

impl<'a> Freeze for PbfWriter<'a>

§

impl<'a> RefUnwindSafe for PbfWriter<'a>

§

impl<'a> Send for PbfWriter<'a>

§

impl<'a> Sync for PbfWriter<'a>

§

impl<'a> Unpin for PbfWriter<'a>

§

impl<'a> !UnwindSafe for PbfWriter<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.