[][src]Trait zamm_yang::tao::form::data::DataExtension

pub trait DataExtension: FormTrait {
    pub fn set_rust_primitive(&mut self, primitive_name: &str) { ... }
pub fn rust_primitive(&self) -> Option<Rc<str>> { ... }
pub fn set_default_value(&mut self, default_value_as_code: &str) { ... }
pub fn default_value(&self) -> Option<Rc<str>> { ... } }

Trait to extend Data functionality that has not been auto-generated.

Provided methods

pub fn set_rust_primitive(&mut self, primitive_name: &str)[src]

Set the name of the Rust primitive that this concept represents.

pub fn rust_primitive(&self) -> Option<Rc<str>>[src]

Get the name of the Rust primitive that this concept represents.

pub fn set_default_value(&mut self, default_value_as_code: &str)[src]

Set the Rust code representation for the default value of this concept.

pub fn default_value(&self) -> Option<Rc<str>>[src]

Get the Rust code representation for the default value of this concept.

Loading content...

Implementors

impl DataExtension for Archetype[src]

Loading content...