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

Required Associated Types§

Required Methods§

Implementors§