Enum gdnative::PropertyHint [] [src]

pub enum PropertyHint<'l> {
    None,
    Range {
        range: Range<f64>,
        step: f64,
        slider: bool,
    },
    Enum {
        values: &'l [&'l str],
    },
    Flags {
        values: &'l [&'l str],
    },
    NodePathToEditedNode,
}

Variants

Fields of Range

Fields of Enum

Fields of Flags

Trait Implementations

Auto Trait Implementations

impl<'l> Send for PropertyHint<'l>

impl<'l> Sync for PropertyHint<'l>