[][src]Struct serde_generate::rust::CodeGenerator

pub struct CodeGenerator<'a> { /* fields omitted */ }

Main configuration object for code-generation in Rust.

Implementations

impl<'a> CodeGenerator<'a>[src]

pub fn new(config: &'a CodeGeneratorConfig) -> Self[src]

Create a Rust code generator for the given config.

pub fn with_derive_macros(self, derive_macros: Vec<String>) -> Self[src]

Which derive macros should be added (independently from serialization).

pub fn with_custom_derive_block(
    self,
    custom_derive_block: Option<String>
) -> Self
[src]

Additional block of text added after derive_macros (if any), before each new container definition.

pub fn with_track_visibility(self, track_visibility: bool) -> Self[src]

Whether definitions and fields should be marked as pub.

pub fn output(
    &self,
    out: &mut dyn Write,
    registry: &Registry
) -> Result<(), Box<dyn Error>>
[src]

Write container definitions in Rust.

pub fn quote_container_definitions(
    &self,
    registry: &Registry
) -> Result<BTreeMap<String, String>, Box<dyn Error>>
[src]

For each container, generate a Rust definition.

Auto Trait Implementations

impl<'a> RefUnwindSafe for CodeGenerator<'a>

impl<'a> Send for CodeGenerator<'a>

impl<'a> Sync for CodeGenerator<'a>

impl<'a> Unpin for CodeGenerator<'a>

impl<'a> UnwindSafe for CodeGenerator<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.