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
source§impl PartialEq<AboutResponse> for AboutResponse
impl PartialEq<AboutResponse> for AboutResponse
source§fn eq(&self, other: &AboutResponse) -> bool
fn eq(&self, other: &AboutResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.