[][src]Struct serde_generate::java::CodeGenerator

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

Main configuration object for code-generation in Java.

Implementations

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

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

Create a Java code generator for the given config.

pub fn write_source_files(
    &self,
    install_dir: PathBuf,
    registry: &Registry
) -> Result<()>
[src]

Output class definitions for registry in separate source files. Source files will be created in a subdirectory of install_dir corresponding to the given package name (if any, otherwise install_dir it self).

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.