Enum gdnative_core::nativescript::init::property::hint::StringHint[][src]

pub enum StringHint {
    Enum(EnumHint),
    File(EnumHint),
    GlobalFile(EnumHint),
    Dir,
    GlobalDir,
    Multiline,
    Placeholder {
        placeholder: String,
    },
}

Possible hints for strings.

Variants

Enum(EnumHint)

Hints that an integer, float or string property is an enumerated value to pick in a list.

File(EnumHint)

Hints that a string property is a path to a file.

GlobalFile(EnumHint)

Hints that a string property is an absolute path to a file outside the project folder.

Dir

Hints that a string property is a path to a directory.

GlobalDir

Hints that a string property is an absolute path to a directory outside the project folder.

Multiline

Hints that a string property is text with line breaks.

Placeholder

Hints that a string property should have a placeholder text visible on its input field, whenever the property is empty.

Fields of Placeholder

placeholder: String

Implementations

impl StringHint[src]

Trait Implementations

impl Clone for StringHint[src]

impl Debug for StringHint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.