Struct objc_sys::objc_property_attribute_t
source · #[repr(C)]pub struct objc_property_attribute_t {
pub name: *const c_char,
pub value: *const c_char,
}Expand description
Describes an Objective-C property attribute.
Fields§
§name: *const c_charThe name of the attribute.
value: *const c_charThe value of the attribute
Usually NULL.
Trait Implementations§
source§impl Clone for objc_property_attribute_t
impl Clone for objc_property_attribute_t
source§fn clone(&self) -> objc_property_attribute_t
fn clone(&self) -> objc_property_attribute_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more