pub unsafe extern "C" fn stream_write(
    stream: *mut Stream,
    data: *const u8,
    size: usize
) -> usize
Expand description

Write N bytes to the stream

Returns:

  • size_t how many bytes was written

Arguments

  • stream - Stream instance
  • data - data to write
  • size - size of data to be written