pub trait ResultResponse:
'static
+ Send
+ Sync {
// Required method
fn get_status(&self) -> u8;
}Expand description
Trait for action result response types.
Required Methods§
Sourcefn get_status(&self) -> u8
fn get_status(&self) -> u8
Returns the status code of the result.