[][src]Struct gdnative::api::Slider

pub struct Slider { /* fields omitted */ }

core class Slider inherits Range (unsafe).

Official documentation

See the documentation of this class in the Godot engine's official documentation.

Class hierarchy

Slider inherits methods from:

Safety

All types in the Godot API have "interior mutability" in Rust parlance. To enforce that the official thread-safety guidelines are followed, the typestate pattern is used in the Ref and TRef smart pointers, and the Instance API. The typestate Access in these types tracks whether the access is unique, shared, or exclusive to the current thread. For more information, see the type-level documentation on Ref.

Implementations

impl Slider[src]

pub fn ticks(&self) -> i64[src]

pub fn ticks_on_borders(&self) -> bool[src]

pub fn is_editable(&self) -> bool[src]

pub fn is_scrollable(&self) -> bool[src]

pub fn set_editable(&self, editable: bool)[src]

pub fn set_scrollable(&self, scrollable: bool)[src]

pub fn set_ticks(&self, count: i64)[src]

pub fn set_ticks_on_borders(&self, ticks_on_border: bool)[src]

Methods from Deref<Target = Range>

pub fn as_ratio(&self) -> f64[src]

pub fn max(&self) -> f64[src]

pub fn min(&self) -> f64[src]

pub fn page(&self) -> f64[src]

pub fn step(&self) -> f64[src]

pub fn value(&self) -> f64[src]

pub fn is_greater_allowed(&self) -> bool[src]

pub fn is_lesser_allowed(&self) -> bool[src]

pub fn is_ratio_exp(&self) -> bool[src]

pub fn is_using_rounded_values(&self) -> bool[src]

pub fn set_allow_greater(&self, allow: bool)[src]

pub fn set_allow_lesser(&self, allow: bool)[src]

pub fn set_as_ratio(&self, value: f64)[src]

pub fn set_exp_ratio(&self, enabled: bool)[src]

pub fn set_max(&self, maximum: f64)[src]

pub fn set_min(&self, minimum: f64)[src]

pub fn set_page(&self, pagesize: f64)[src]

pub fn set_step(&self, step: f64)[src]

pub fn set_use_rounded_values(&self, enabled: bool)[src]

pub fn set_value(&self, value: f64)[src]

pub fn share(&self, with: impl AsArg<Node>)[src]

pub fn unshare(&self)[src]

Trait Implementations

impl Debug for Slider[src]

impl Deref for Slider[src]

type Target = Range

The resulting type after dereferencing.

impl DerefMut for Slider[src]

impl GodotObject for Slider[src]

type RefKind = ManuallyManaged

The memory management kind of this type. This modifies the behavior of the Ref smart pointer. See its type-level documentation for more information. Read more

impl QueueFree for Slider[src]

impl SubClass<CanvasItem> for Slider[src]

impl SubClass<Control> for Slider[src]

impl SubClass<Node> for Slider[src]

impl SubClass<Object> for Slider[src]

impl SubClass<Range> for Slider[src]

impl SubClass<Slider> for VSlider[src]

impl SubClass<Slider> for HSlider[src]

Auto Trait Implementations

impl RefUnwindSafe for Slider

impl !Send for Slider

impl !Sync for Slider

impl Unpin for Slider

impl UnwindSafe for Slider

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> SubClass<T> for T where
    T: GodotObject
[src]

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.