pub struct PropInfo {
pub property_code: u16,
pub data_type: u16,
pub get_set: u8,
pub factory_default: DataType,
pub current: DataType,
pub form: FormData,
}
Fields§
§property_code: u16
A specific property_code.
data_type: u16
This field identifies the Datatype Code of the property.
get_set: u8
This field indicates whether the property is read-only or read-write.
factory_default: DataType
§current: DataType
§form: FormData
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PropInfo
impl RefUnwindSafe for PropInfo
impl Send for PropInfo
impl Sync for PropInfo
impl Unpin for PropInfo
impl UnwindSafe for PropInfo
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