pub trait YdbResponseWithResult {
type Result;
// Required method
fn result(&self) -> Result<Self::Result, ExtractResultError>;
}Expand description
The trait to invoke payload result from response. See examples in crate::client
pub trait YdbResponseWithResult {
type Result;
// Required method
fn result(&self) -> Result<Self::Result, ExtractResultError>;
}The trait to invoke payload result from response. See examples in crate::client