pub trait TwsNullableField {
// Required method
fn to_tws_nullable_field(self) -> TwsApiResult<String>;
}Expand description
TWS field serialization used by make_field_handle_empty.
Required Methods§
Sourcefn to_tws_nullable_field(self) -> TwsApiResult<String>
fn to_tws_nullable_field(self) -> TwsApiResult<String>
Converts a value into its TWS field string, with unset sentinels mapped to empty.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".