pub struct ExecuteKwResponse {
pub data: Value,
}
Expand description
Represents the response to an Odoo Execute
call
This struct is intentionally very generic, as the execute
call can return
any arbitrary JSON data.
Fields§
§data: Value
Trait Implementations§
Source§impl Debug for ExecuteKwResponse
impl Debug for ExecuteKwResponse
Source§impl<'de> Deserialize<'de> for ExecuteKwResponse
impl<'de> Deserialize<'de> for ExecuteKwResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExecuteKwResponse
impl RefUnwindSafe for ExecuteKwResponse
impl Send for ExecuteKwResponse
impl Sync for ExecuteKwResponse
impl Unpin for ExecuteKwResponse
impl UnwindSafe for ExecuteKwResponse
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