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

An Odoo “Web” request type

Required Methods§

Describe the “Web” method endpoint (e.g., “/web/session/authenticate”)

Provided Methods§

Build self into a full JsonRpcRequest

Implementors§