RlpStream

Struct RlpStream 

Source
pub struct RlpStream { /* private fields */ }
Expand description

Appendable rlp encoder.

Implementations§

Source§

impl RlpStream

Source

pub fn new() -> Self

Initializes instance of empty Stream.

Source

pub fn new_list(len: usize) -> Self

Initializes the Stream as a list.

Source

pub fn append<'a, E>(&'a mut self, value: &E) -> &'a mut Self
where E: Encodable,

Appends value to the end of stream, chainable.

extern crate rlp;
use rlp::*;

fn main () {
	let mut stream = RlpStream::new_list(2);
	stream.append(&"cat").append(&"dog");
	let out = stream.out();
	assert_eq!(out, vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']);
}
Source

pub fn append_list<'a, E, K>(&'a mut self, values: &[K]) -> &'a mut Self
where E: Encodable, K: Borrow<E>,

Appends list of values to the end of stream, chainable.

Source

pub fn append_internal<'a, E>(&'a mut self, value: &E) -> &'a mut Self
where E: Encodable,

Appends value to the end of stream, but do not count it as an appended item. It’s useful for wrapper types

Source

pub fn begin_list(&mut self, len: usize) -> &mut RlpStream

Declare appending the list of given size, chainable.

extern crate rlp;
use rlp::*;

fn main () {
	let mut stream = RlpStream::new_list(2);
	stream.begin_list(2).append(&"cat").append(&"dog");
	stream.append(&"");
	let out = stream.out();
	assert_eq!(out, vec![0xca, 0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g', 0x80]);
}
Source

pub fn begin_unbounded_list(&mut self) -> &mut RlpStream

Declare appending the list of unknown size, chainable.

Source

pub fn append_empty_data(&mut self) -> &mut RlpStream

Apends null to the end of stream, chainable.

extern crate rlp;
use rlp::*;

fn main () {
	let mut stream = RlpStream::new_list(2);
	stream.append_empty_data().append_empty_data();
	let out = stream.out();
	assert_eq!(out, vec![0xc2, 0x80, 0x80]);
}
Source

pub fn append_raw<'a>( &'a mut self, bytes: &[u8], item_count: usize, ) -> &'a mut RlpStream

Appends raw (pre-serialised) RLP data. Use with caution. Chainable.

Source

pub fn append_raw_checked<'a>( &'a mut self, bytes: &[u8], item_count: usize, max_size: usize, ) -> bool

Appends raw (pre-serialised) RLP data. Checks for size oveflow.

Source

pub fn estimate_size<'a>(&'a self, add: usize) -> usize

Calculate total RLP size for appended payload.

Source

pub fn len<'a>(&'a self) -> usize

Returns current RLP size in bytes for the data pushed into the list.

Source

pub fn clear(&mut self)

Clear the output stream so far.

extern crate rlp;
use rlp::*;

fn main () {
	let mut stream = RlpStream::new_list(3);
	stream.append(&"cat");
	stream.clear();
	stream.append(&"dog");
	let out = stream.out();
	assert_eq!(out, vec![0x83, b'd', b'o', b'g']);
}
Source

pub fn is_finished(&self) -> bool

Returns true if stream doesnt expect any more items.

extern crate rlp;
use rlp::*;

fn main () {
	let mut stream = RlpStream::new_list(2);
	stream.append(&"cat");
	assert_eq!(stream.is_finished(), false);
	stream.append(&"dog");
	assert_eq!(stream.is_finished(), true);
	let out = stream.out();
	assert_eq!(out, vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']);
}
Source

pub fn as_raw(&self) -> &[u8]

Get raw encoded bytes

Source

pub fn out(self) -> Vec<u8>

Streams out encoded bytes.

panic! if stream is not finished.

Source

pub fn encoder(&mut self) -> BasicEncoder<'_>

Source

pub fn drain(self) -> ElasticArray1024<u8>

Drain the object and return the underlying ElasticArray.

Source

pub fn complete_unbounded_list(&mut self)

Finalize current ubnbound list. Panics if no unbounded list has been opened.

Trait Implementations§

Source§

impl Default for RlpStream

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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.