pub enum AboutResponse {
Basic(AboutResponseBasic),
Extended(AboutResponseExtended),
}
Expand description
Represents the response to an Odoo About
call
Variants§
Basic(AboutResponseBasic)
Basic response; includes only the info
string
Extended(AboutResponseExtended)
Extended response; includes info
string and version info
Trait Implementations§
Source§impl Debug for AboutResponse
impl Debug for AboutResponse
Source§impl<'de> Deserialize<'de> for AboutResponse
impl<'de> Deserialize<'de> for AboutResponse
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 AboutResponse
impl RefUnwindSafe for AboutResponse
impl Send for AboutResponse
impl Sync for AboutResponse
impl Unpin for AboutResponse
impl UnwindSafe for AboutResponse
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