Skip to main content

Serializer

Struct Serializer 

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

Configured Serializer instance

A Serializer provides methods for converting documents to various formats using the configuration specified by the SerializerBuilder.

Implementations§

Source§

impl Serializer

Source

pub fn serialize(&self, doc: &DxDocument) -> String

Serialize a DxDocument to LLM format string

This is the primary serialization method that produces the token-efficient LLM format.

§Example
use serializer::{SerializerBuilder, DxDocument, DxLlmValue};

let mut doc = DxDocument::new();
doc.context.insert("name".to_string(), DxLlmValue::Str("MyApp".to_string()));

let serializer = SerializerBuilder::new().build();
let text = serializer.serialize(&doc);
Source

pub fn deserialize(&self, input: &str) -> Result<DxDocument, ConvertError>

Deserialize LLM format string to DxDocument

Parses the token-efficient LLM format back into a structured document.

§Errors

Returns a ConvertError if the input is not valid LLM format.

Source

pub fn format_human(&self, doc: &DxDocument) -> Result<String, PrettyPrintError>

Format a DxDocument to human-readable format

Produces clean, hand-editable format using the configured options. The output is validated if validation is enabled in the builder.

§Example
use serializer::{SerializerBuilder, DxDocument, DxLlmValue};

let mut doc = DxDocument::new();
doc.context.insert("name".to_string(), DxLlmValue::Str("MyApp".to_string()));

let serializer = SerializerBuilder::new()
    .for_humans()
    .build();
let human_text = serializer.format_human(&doc).unwrap();
Source

pub fn format_human_unchecked(&self, doc: &DxDocument) -> String

Format a DxDocument to human format without validation

Faster than format_human() but provides no guarantees about the output being parseable.

Source

pub fn generate_files( &self, doc: &DxDocument, source_path: &Path, ) -> Result<SerializerResult, SerializerOutputError>

Generate output files for a DxDocument

Creates .human and .machine files in the configured output directory.

§Example
use serializer::{SerializerBuilder, DxDocument};
use std::path::Path;

let doc = DxDocument::new();
let serializer = SerializerBuilder::new()
    .output_dir("build/serializer")
    .build();

let result = serializer.generate_files(&doc, Path::new("config.sr")).unwrap();
println!("Generated {} bytes LLM, {} bytes machine",
         result.llm_size, result.machine_size);
Source

pub fn pretty_printer(&self) -> &PrettyPrinter

Get the pretty printer instance

Provides access to the underlying PrettyPrinter for advanced use cases.

Source

pub fn output_generator(&self) -> &SerializerOutput

Get the output generator instance

Provides access to the underlying SerializerOutput for advanced use cases.

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> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
Source§

impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
where T: SharedNiching<N1, N2>, N1: Niching<T>, N2: Niching<T>,

Source§

unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool

Returns whether the given value has been niched. Read more
Source§

fn resolve_niched(out: Place<NichedOption<T, N1>>)

Writes data to out indicating that a T is niched.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
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.