Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
Status codes returned by all FFI functions.
Every extern "C" function in this library returns an NemoRelayStatus. On non-Ok returns, call nemo_relay_last_error on the same thread to retrieve a human-readable error message.
Ok = 0Ok = 0
Operation completed successfully.
AlreadyExists = 1AlreadyExists = 1
A resource with the given name already exists.
NotFound = 2NotFound = 2
The requested resource was not found.
ScopeStackEmpty = 3ScopeStackEmpty = 3
The scope stack is empty (no active scope).
GuardrailRejected = 4GuardrailRejected = 4
A guardrail rejected the operation.
Internal = 5Internal = 5
An internal runtime error occurred.
NullPointer = 6NullPointer = 6
A required pointer argument was null.
InvalidJson = 7InvalidJson = 7
A JSON string argument could not be parsed.
InvalidUtf8 = 8InvalidUtf8 = 8
A C string argument contained invalid UTF-8.
InvalidArg = 9InvalidArg = 9
A function argument had an invalid value (e.g. malformed UUID).
impl Clone for NemoRelayStatusimpl Clone for NemoRelayStatus
clonefn clone(&self) -> NemoRelayStatus
clone_fromfn clone_from(&mut self, source: &Self)
impl Debug for NemoRelayStatusimpl Debug for NemoRelayStatus
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl From<&FlowError> for NemoRelayStatusimpl From<&FlowError> for NemoRelayStatus
fromfn from(e: &FlowError) -> Self
impl PartialEq for NemoRelayStatusimpl PartialEq for NemoRelayStatus
eqfn eq(&self, other: &NemoRelayStatus) -> bool
nefn ne(&self, other: &Rhs) -> bool
impl Copy for NemoRelayStatusimpl Copy for NemoRelayStatus
impl Eq for NemoRelayStatusimpl Eq for NemoRelayStatus
impl StructuralPartialEq for NemoRelayStatusimpl StructuralPartialEq for NemoRelayStatus