pub struct PropertyNamesResponsePropertyNames {
pub property_display_name: Option<String>,
pub property_name: Option<String>,
pub property_name_metadata: Option<Box<PropertyNamesResponsePropertyNameMetadata>>,
}Expand description
PropertyNamesResponsePropertyNames : This type defines the fields associated with a property name.
Fields§
§property_display_name: Option<String>The display name of a property. This is the localized name of the compatible property.
property_name: Option<String>The canonical name of a property. This value is used as part of the name-value pairs used to specify compatibility.
property_name_metadata: Option<Box<PropertyNamesResponsePropertyNameMetadata>>Implementations§
Source§impl PropertyNamesResponsePropertyNames
impl PropertyNamesResponsePropertyNames
Sourcepub fn new() -> PropertyNamesResponsePropertyNames
pub fn new() -> PropertyNamesResponsePropertyNames
This type defines the fields associated with a property name.
Trait Implementations§
Source§impl Clone for PropertyNamesResponsePropertyNames
impl Clone for PropertyNamesResponsePropertyNames
Source§fn clone(&self) -> PropertyNamesResponsePropertyNames
fn clone(&self) -> PropertyNamesResponsePropertyNames
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 PropertyNamesResponsePropertyNames
impl Default for PropertyNamesResponsePropertyNames
Source§fn default() -> PropertyNamesResponsePropertyNames
fn default() -> PropertyNamesResponsePropertyNames
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyNamesResponsePropertyNames
impl<'de> Deserialize<'de> for PropertyNamesResponsePropertyNames
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PropertyNamesResponsePropertyNames, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PropertyNamesResponsePropertyNames, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for PropertyNamesResponsePropertyNames
impl Serialize for PropertyNamesResponsePropertyNames
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 PropertyNamesResponsePropertyNames
Auto Trait Implementations§
impl Freeze for PropertyNamesResponsePropertyNames
impl RefUnwindSafe for PropertyNamesResponsePropertyNames
impl Send for PropertyNamesResponsePropertyNames
impl Sync for PropertyNamesResponsePropertyNames
impl Unpin for PropertyNamesResponsePropertyNames
impl UnsafeUnpin for PropertyNamesResponsePropertyNames
impl UnwindSafe for PropertyNamesResponsePropertyNames
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