[][src]Struct serde_generate::golang::CodeGenerator

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

Main configuration object for code-generation in Go.

Implementations

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

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

Create a Go code generator for the given config.

pub fn with_serde_module_path(self, serde_module_path: String) -> Self[src]

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

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

Output class definitions for registry.

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.