pub enum PropertyType {
Show 15 variants
Integer,
Double,
String,
Char,
Boolean,
Color,
Image,
Padding,
Link,
Position,
Highlight,
List,
Orientation,
Cursor,
Inherit,
// some variants omitted
}Expand description
The type of a property.
Variants§
Integer
Double
String
Char
Boolean
Color
Image
Padding
Link
Position
Highlight
List
Orientation
Cursor
Inherit
Trait Implementations§
Source§impl Clone for PropertyType
impl Clone for PropertyType
Source§fn clone(&self) -> PropertyType
fn clone(&self) -> PropertyType
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 PropertyType
impl Debug for PropertyType
Source§impl Hash for PropertyType
impl Hash for PropertyType
Source§impl PartialEq for PropertyType
impl PartialEq for PropertyType
impl Copy for PropertyType
impl Eq for PropertyType
impl StructuralPartialEq for PropertyType
Auto Trait Implementations§
impl Freeze for PropertyType
impl RefUnwindSafe for PropertyType
impl Send for PropertyType
impl Sync for PropertyType
impl Unpin for PropertyType
impl UnwindSafe for PropertyType
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