pub trait ScalarFieldWalkerExt {
    // Required method
    fn native_type_instance(
        &self,
        connector: &dyn Connector
    ) -> Option<NativeTypeInstance>;
}

Required Methods§

source

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.

Implementations on Foreign Types§

source§

impl ScalarFieldWalkerExt for IndexFieldWalker<'_>

source§

impl ScalarFieldWalkerExt for CompositeTypeFieldWalker<'_>

source§

impl ScalarFieldWalkerExt for ScalarFieldWalker<'_>

Implementors§