ganganonline-parser-lib 0.0.0

ganganonline parser for rust using pb-rs
Documentation
extern crate quick_protobuf;
#[cfg(feature = "serde")]
extern crate serde;
use crate::reader;
use quick_protobuf::BytesReader;
#[cfg(not(feature = "no_cow"))]
pub fn parse_ganganonline_proto(
	buf: &[u8]
) -> Result<reader::Response<'_>, quick_protobuf::Error> {
	let len = buf.len();
	let mut bytes = BytesReader::from_bytes(buf);
	bytes.read_message_by_len(buf, len)
}
#[cfg(feature = "no_cow")]
pub fn parse_ganganonline_proto(
	buf: &[u8]
) -> Result<reader::Response, quick_protobuf::Error> {
	let len = buf.len();
	let mut bytes = BytesReader::from_bytes(buf);
	bytes.read_message_by_len(buf, len)
}