pub struct Property {Show 14 fields
pub name: String,
pub readable: bool,
pub writable: bool,
pub construct: bool,
pub construct_only: bool,
pub typ: TypeId,
pub c_type: Option<String>,
pub transfer: Transfer,
pub version: Option<Version>,
pub deprecated_version: Option<Version>,
pub doc: Option<String>,
pub doc_deprecated: Option<String>,
pub getter: Option<String>,
pub setter: Option<String>,
}
Fields§
§name: String
§readable: bool
§writable: bool
§construct: bool
§construct_only: bool
§typ: TypeId
§c_type: Option<String>
§transfer: Transfer
§version: Option<Version>
§deprecated_version: Option<Version>
§doc: Option<String>
§doc_deprecated: Option<String>
§getter: Option<String>
§setter: Option<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnwindSafe for Property
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