[][src]Struct serde_generate::python3::CodeGenerator

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

Main configuration object for code-generation in Python.

Implementations

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

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

Create a Python code generator for the given config.

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

Whether the module providing Serde definitions is located within a package.

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

Write container definitions in Python.

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.