pub struct OdooWebContainer<T>where
T: OdooWebMethod + JsonRpcParams<Container<T> = Self>,{ /* private fields */ }
Expand description
The container type for an Odoo “Web” request
This type covers (almost) any request whose endpoint starts with /web
,
for example:
/web/session/authenticate
/web/session/destroy
/web/dataset/call
- And many more
For more info, see super::JsonRpcParams
Trait Implementations§
Source§impl<T> Debug for OdooWebContainer<T>
impl<T> Debug for OdooWebContainer<T>
Source§impl<T> Serialize for OdooWebContainer<T>
impl<T> Serialize for OdooWebContainer<T>
Auto Trait Implementations§
impl<T> Freeze for OdooWebContainer<T>where
T: Freeze,
impl<T> RefUnwindSafe for OdooWebContainer<T>where
T: RefUnwindSafe,
impl<T> Send for OdooWebContainer<T>where
T: Send,
impl<T> Sync for OdooWebContainer<T>where
T: Sync,
impl<T> Unpin for OdooWebContainer<T>where
T: Unpin,
impl<T> UnwindSafe for OdooWebContainer<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more