Trait Generator

Source
pub trait Generator {
    // Required method
    fn generate(&self, indentation: Indentation, level: usize) -> String;
}

Required Methodsยง

Source

fn generate(&self, indentation: Indentation, level: usize) -> String

Implementations on Foreign Typesยง

Sourceยง

impl Generator for Vec<PropertyHook>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Class>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<ClassConstant>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Constant>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Enum>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<EnumCase>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Function>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Interface>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Method>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Parameter>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Property>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Trait>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Sourceยง

impl Generator for Vec<Usage>

Sourceยง

fn generate(&self, indentation: Indentation, level: usize) -> String

Implementorsยง