Struct SignalsInEditorProperty

pub struct SignalsInEditorProperty<'c> { /* private fields */ }
Expand description

A collection of signals for the EditorProperty class.

Implementations§

§

impl<'c> SignalsInEditorProperty<'c>

pub fn property_changed(&mut self) -> SigPropertyChanged<'c>

Signature: (property: StringName, value: Variant, field: StringName, changing: bool)

pub fn multiple_properties_changed( &mut self, ) -> SigMultiplePropertiesChanged<'c>

Signature: (properties: PackedStringArray, value: VariantArray)

pub fn property_keyed(&mut self) -> SigPropertyKeyed<'c>

Signature: (property: StringName)

pub fn property_deleted(&mut self) -> SigPropertyDeleted<'c>

Signature: (property: StringName)

pub fn property_keyed_with_value(&mut self) -> SigPropertyKeyedWithValue<'c>

Signature: (property: StringName, value: Variant)

pub fn property_checked(&mut self) -> SigPropertyChecked<'c>

Signature: (property: StringName, checked: bool)

pub fn property_favorited(&mut self) -> SigPropertyFavorited<'c>

Signature: (property: StringName, favorited: bool)

pub fn property_pinned(&mut self) -> SigPropertyPinned<'c>

Signature: (property: StringName, pinned: bool)

pub fn property_can_revert_changed(&mut self) -> SigPropertyCanRevertChanged<'c>

Signature: (property: StringName, can_revert: bool)

pub fn resource_selected(&mut self) -> SigResourceSelected<'c>

Signature: (path: GString, resource: Gd<Resource>)

pub fn object_id_selected(&mut self) -> SigObjectIdSelected<'c>

Signature: (property: StringName, id: i64)

pub fn selected(&mut self) -> SigSelected<'c>

Signature: (path: GString, focusable_idx: i64)

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.