pub struct Property<'a> {
pub name: &'a str,
pub hint: &'a str,
pub tag: Type,
}Expand description
A struct representing a property.
Fields§
§name: &'a strThe name of the property.
hint: &'a strThe hint for the property.
tag: TypeThe tag representing the property’s type.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Property<'a>
impl<'a> Send for Property<'a>
impl<'a> Sync for Property<'a>
impl<'a> Unpin for Property<'a>
impl<'a> UnwindSafe for Property<'a>
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