Trait quickfix::IntoFixValue
source · pub trait IntoFixValue {
// Required method
fn into_fix_value(self) -> Result<CString, NulError>;
}
Expand description
Convert object to FIX value.
This trait is like std::fmt::Display
but it has a different meaning.
Using AsRef<str>
feel also like mixing different thing together that does not match.
This is why it exists.
Required Methods§
sourcefn into_fix_value(self) -> Result<CString, NulError>
fn into_fix_value(self) -> Result<CString, NulError>
Convert implementer to a printable null terminated FIX value.