pub trait ScalarFieldWalkerExt {
// Required method
fn native_type_instance(
&self,
connector: &dyn Connector
) -> Option<NativeTypeInstance>;
}
Required Methods§
sourcefn native_type_instance(
&self,
connector: &dyn Connector
) -> Option<NativeTypeInstance>
fn native_type_instance( &self, connector: &dyn Connector ) -> Option<NativeTypeInstance>
This will return None when:
- There is no native type attribute on the field.
- The native type attribute is not valid for the connector.