StormByte 2.0.0
C++26 foundation of the StormByte suite
 
Loading...
Searching...
No Matches
StormByte::Detail::Codec< CString > Struct Reference

StormByte::Detail::Codec specialization for StormByte::CString. More...

#include <StormByte/serializable.hxx>

Static Public Member Functions

static std::size_t Size (const CString &data) noexcept
 Serialized size of data.
 
static std::vector< std::byte > Write (const CString &data) noexcept
 Encodes data.
 
static Expected< CString, DeserializeError > Read (std::span< const std::byte > data) noexcept
 Decodes a StormByte::CString from the start of data.
 

Detailed Description

StormByte::Detail::Codec specialization for StormByte::CString.

Same wire as std::string: uint64 byte count (LE) + raw bytes. A null StormByte::CString is written as an empty payload (operator std::string). Decode always yields a non-null buffer ("" when the payload is empty).

Member Function Documentation

◆ Read()

static Expected< CString, DeserializeError > StormByte::Detail::Codec< CString >::Read ( std::span< const std::byte >  data)
staticnoexcept

Decodes a StormByte::CString from the start of data.

Parameters
dataInput span.
Returns
Value, or StormByte::DeserializeError.

◆ Size()

static std::size_t StormByte::Detail::Codec< CString >::Size ( const CString &  data)
staticnoexcept

Serialized size of data.

Parameters
dataValue to measure.
Returns
Size in bytes.

◆ Write()

static std::vector< std::byte > StormByte::Detail::Codec< CString >::Write ( const CString &  data)
staticnoexcept

Encodes data.

Parameters
dataValue to encode.
Returns
Blob.

The documentation for this struct was generated from the following file: