pub struct RustCodeGenerator { /* private fields */ }

Implementations§

source§

impl RustCodeGenerator

source

pub fn add_global_derive<I: Into<String>>(&mut self, derive: I)

source

pub fn without_additional_global_derives(self) -> Self

source

pub const fn fields_are_pub(&self) -> bool

source

pub fn set_fields_pub(&mut self, allow: bool)

source

pub const fn fields_have_getter_and_setter(&self) -> bool

source

pub fn set_fields_have_getter_and_setter(&mut self, allow: bool)

source

pub fn to_string_without_generators(&self) -> Vec<(String, String)>

source

pub fn to_string_with_generators( &self, generators: &[&dyn GeneratorSupplement<Rust>] ) -> Vec<(String, String)>

source

pub fn model_to_file( &self, model: &Model<Rust>, generators: &[&dyn GeneratorSupplement<Rust>] ) -> (String, String)

source

pub fn add_definition(&self, scope: &mut Scope, Definition: &Definition<Rust>)

source

pub fn rust_field_name(name: &str, check_for_keywords: bool) -> String

source

pub fn rust_variant_name(name: &str) -> String

source

pub fn rust_module_name(name: &str) -> String

Trait Implementations§

source§

impl Debug for RustCodeGenerator

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for RustCodeGenerator

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<Model<Rust>> for RustCodeGenerator

source§

fn from(model: Model<Rust>) -> Self

Converts to this type from the input type.
source§

impl Generator<Rust> for RustCodeGenerator

§

type Error = Infallible

source§

fn add_model(&mut self, model: Model<Rust>)

source§

fn models(&self) -> &[Model<Rust>]

source§

fn models_mut(&mut self) -> &mut [Model<Rust>]

source§

fn to_string(&self) -> Result<Vec<(String, String)>, Self::Error>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.