pub struct CustomProperty {
pub fmtid: String,
pub pid: u32,
pub name: String,
pub value: CustomPropertyValue,
}Expand description
A single custom property entry.
Fields§
§fmtid: String§pid: u32§name: String§value: CustomPropertyValueTrait Implementations§
Source§impl Clone for CustomProperty
impl Clone for CustomProperty
Source§fn clone(&self) -> CustomProperty
fn clone(&self) -> CustomProperty
Returns a duplicate 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 moreSource§impl Debug for CustomProperty
impl Debug for CustomProperty
Source§impl PartialEq for CustomProperty
impl PartialEq for CustomProperty
impl StructuralPartialEq for CustomProperty
Auto Trait Implementations§
impl Freeze for CustomProperty
impl RefUnwindSafe for CustomProperty
impl Send for CustomProperty
impl Sync for CustomProperty
impl Unpin for CustomProperty
impl UnwindSafe for CustomProperty
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