pub struct AboutResponseExtended {
pub info: String,
pub server_version: String,
}
Expand description
Represents the response to an Odoo About
call
Fields§
§info: String
The “info” string
At the time of writing, this is hard-coded to See http://openerp.com
server_version: String
The “pretty” version, normally something like 16.0+e
or 15.0
Note that this is only returned when the original reques was made with
extended: true
(see AboutResponse
)
Trait Implementations§
Source§impl Debug for AboutResponseExtended
impl Debug for AboutResponseExtended
Source§impl<'de> Deserialize<'de> for AboutResponseExtended
impl<'de> Deserialize<'de> for AboutResponseExtended
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 AboutResponseExtended
impl RefUnwindSafe for AboutResponseExtended
impl Send for AboutResponseExtended
impl Sync for AboutResponseExtended
impl Unpin for AboutResponseExtended
impl UnwindSafe for AboutResponseExtended
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