pub struct Property {
pub module: &'static str,
pub name: &'static str,
pub short_name: &'static str,
pub value: *const c_char,
pub ty: PropertyType,
pub doc: Option<&'static str>,
pub available_since: Option<c_int>,
}Expand description
Metadata for property constants
Fields§
§module: &'static str§name: &'static str§short_name: &'static str§value: *const c_char§ty: PropertyType§doc: Option<&'static str>§available_since: Option<c_int>Implementations§
Trait Implementations§
impl Copy for Property
impl Send for Property
impl Sync for Property
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe 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