[][src]Struct rbx_dom_weak::RbxInstance

pub struct RbxInstance { /* fields omitted */ }

Represents an instance that is rooted in an RbxTree. These are always returned from an existing RbxTree with a method like RbxTree::get_instance.

RbxInstance derefs to RbxInstanceProperties to make accessing properties easier.

Methods

impl RbxInstance[src]

pub fn get_id(&self) -> RbxId[src]

Returns the unique ID associated with this instance.

pub fn get_parent_id(&self) -> Option<RbxId>[src]

Returns the ID of the parent of this instance, if it has a parent.

pub fn get_children_ids(&self) -> &[RbxId][src]

Returns a list of the IDs of the children of this instance.

pub fn sort_children_by_key<K, F>(&mut self, f: F) where
    F: FnMut(RbxId) -> K,
    K: Ord
[src]

Re-orders children using the given key function. This sort is stable.

Works the same as Vec::sort_by_key which is used internally.

pub fn sort_children_unstable_by_key<K, F>(&mut self, f: F) where
    F: FnMut(RbxId) -> K,
    K: Ord
[src]

Re-orders children using the given key function. This sort is unstable.

Works the same as Vec::sort_unstable_by_key which is used internally.

Trait Implementations

impl Clone for RbxInstance[src]

impl Debug for RbxInstance[src]

impl Deref for RbxInstance[src]

type Target = RbxInstanceProperties

The resulting type after dereferencing.

impl DerefMut for RbxInstance[src]

impl<'de> Deserialize<'de> for RbxInstance[src]

impl PartialEq<RbxInstance> for RbxInstance[src]

impl Serialize for RbxInstance[src]

impl StructuralPartialEq for RbxInstance[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,