pub type Result<T> = FfiResult<T, Error>;
The result type for any SDK API function.
Like a neotron_ffi::FfiResult but the error type is Error.
neotron_ffi::FfiResult
Error
#[repr(C)]pub enum Result<T> { Ok(T), Err(Error), }
The operation succeeded (like [core::result::Result::Ok]).
core::result::Result::Ok
The operation failed (like [core::result::Result::Err]).
core::result::Result::Err