pub trait ForeignPropertyGetter<T> {
// Required method
fn ffi_get(&self, key: CString) -> Result<T, QuickFixError>;
}Expand description
Allow reading value (aka property) from a foreign (C++) object.
Required Methods§
Sourcefn ffi_get(&self, key: CString) -> Result<T, QuickFixError>
fn ffi_get(&self, key: CString) -> Result<T, QuickFixError>
Read foreign value from object.