VarWriter

Struct VarWriter 

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

A writer for sending several segments over a stream using variable length encoding Data is written in little-endian if the feature “big-endian” is not enabled

§Example

use send_it::writer::VarWriter;

let mut sender = VarWriter::new();

sender.add_string("Hello");
sender.add_string("World");

let mut buffer = Vec::new();
sender.send(&mut buffer).unwrap();

Implementations§

Source§

impl VarWriter

Source

pub fn new() -> VarWriter

Create a new VarWriter

Source

pub fn add(&mut self, segment: Segment)

Add a segment to the writer

Source

pub fn add_string<S: Into<String>>(&mut self, string: S)

Add a string to the writer

§Example
use send_it::writer::VarWriter;

let mut sender = VarWriter::new();

sender.add_string("Hello");
Examples found in repository?
examples/client.rs (line 9)
1fn main() {
2    // create a connection to our example server in server.rs
3    let mut connection = std::net::TcpStream::connect("localhost:3333").expect("Failed to connect to server!");
4    
5    // create a writer
6    let mut writer = send_it::writer::VarWriter::default();
7    
8    // add two segments: "Hello, " and "world!"
9    writer.add_string("Hello, ");
10    writer.add_string("world!");
11    
12    // send our two segments to the TcpStream and exit
13    writer.send(&mut connection).expect("Failed to send data!");
14    println!("sent data!");
15}
Source

pub fn add_raw(&mut self, raw: &[u8])

Add raw data to the writer

§Example
use send_it::writer::VarWriter;

let mut sender = VarWriter::new();

sender.add_raw(&[0x48, 0x65, 0x6C, 0x6C, 0x6F]);
Source

pub fn send<W: Write>(&mut self, stream: &mut W) -> Result<()>

Encodes the data and sends it over the stream.

  • The data is cleared after sending.
§Example
use send_it::writer::VarWriter;

let mut sender = VarWriter::new();

sender.add_string("Hello");
sender.add_string("World");

let mut buffer = Vec::new();
sender.send(&mut buffer).unwrap();
Examples found in repository?
examples/client.rs (line 13)
1fn main() {
2    // create a connection to our example server in server.rs
3    let mut connection = std::net::TcpStream::connect("localhost:3333").expect("Failed to connect to server!");
4    
5    // create a writer
6    let mut writer = send_it::writer::VarWriter::default();
7    
8    // add two segments: "Hello, " and "world!"
9    writer.add_string("Hello, ");
10    writer.add_string("world!");
11    
12    // send our two segments to the TcpStream and exit
13    writer.send(&mut connection).expect("Failed to send data!");
14    println!("sent data!");
15}
Source

pub fn send_without_clearing<W: Write>(&mut self, stream: &mut W) -> Result<()>

Encodes the data and sends it over the stream.

  • The data is not cleared after sending.
§Example
use send_it::writer::VarWriter;

let mut sender = VarWriter::new();

sender.add_string("Hello");
sender.add_string("World");

let mut buffer = Vec::new();
sender.send_without_clearing(&mut buffer).unwrap();
Source

pub fn clear(&mut self)

Removes all segments from the writer

Trait Implementations§

Source§

impl Default for VarWriter

Source§

fn default() -> Self

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

impl Write for VarWriter

Source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Writes a buffer into this writer, returning how many bytes were written. Read more
Source§

fn flush(&mut self) -> Result<()>

Flushes this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · Source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
Source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · Source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
Source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · Source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · Source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. 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.