pub struct MultiCompatibilityPropertyValuesResponse {
pub compatibilities: Option<Vec<Compatibility>>,
pub metadata_version: Option<String>,
}Expand description
MultiCompatibilityPropertyValuesResponse : This type defines the response fields for the getMultiCompatibilityPropertyValues method.
Fields§
§compatibilities: Option<Vec<Compatibility>>This container defines the compatibility details associated with the specified property name value(s).
metadata_version: Option<String>The version number of the metadata. This version is upticked whenever there are compatibility name changes for the specified marketplace.
Implementations§
Source§impl MultiCompatibilityPropertyValuesResponse
impl MultiCompatibilityPropertyValuesResponse
Sourcepub fn new() -> MultiCompatibilityPropertyValuesResponse
pub fn new() -> MultiCompatibilityPropertyValuesResponse
This type defines the response fields for the getMultiCompatibilityPropertyValues method.
Trait Implementations§
Source§impl Clone for MultiCompatibilityPropertyValuesResponse
impl Clone for MultiCompatibilityPropertyValuesResponse
Source§fn clone(&self) -> MultiCompatibilityPropertyValuesResponse
fn clone(&self) -> MultiCompatibilityPropertyValuesResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for MultiCompatibilityPropertyValuesResponse
impl Default for MultiCompatibilityPropertyValuesResponse
Source§fn default() -> MultiCompatibilityPropertyValuesResponse
fn default() -> MultiCompatibilityPropertyValuesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MultiCompatibilityPropertyValuesResponse
impl<'de> Deserialize<'de> for MultiCompatibilityPropertyValuesResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MultiCompatibilityPropertyValuesResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MultiCompatibilityPropertyValuesResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for MultiCompatibilityPropertyValuesResponse
impl Serialize for MultiCompatibilityPropertyValuesResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for MultiCompatibilityPropertyValuesResponse
Auto Trait Implementations§
impl Freeze for MultiCompatibilityPropertyValuesResponse
impl RefUnwindSafe for MultiCompatibilityPropertyValuesResponse
impl Send for MultiCompatibilityPropertyValuesResponse
impl Sync for MultiCompatibilityPropertyValuesResponse
impl Unpin for MultiCompatibilityPropertyValuesResponse
impl UnsafeUnpin for MultiCompatibilityPropertyValuesResponse
impl UnwindSafe for MultiCompatibilityPropertyValuesResponse
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