pub trait OdooApiMethodwhere
    Self: Sized + Debug + Serialize + JsonRpcParams<Container<Self> = OdooApiContainer<Self>>,
    Self::Container<Self>: Debug + Serialize,
{ fn describe(&self) -> (&'static str, &'static str); fn _build(self) -> JsonRpcRequest<Self> { ... } }
Expand description

An Odoo “API” (JSON-RPC) request type

Required Methods§

Describe the JSON-RPC service and method for this type

Provided Methods§

Build self into a full JsonRpcRequest

Implementors§