[][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.

Trait Implementations

impl PartialEq<RbxInstance> for RbxInstance[src]

impl Clone for RbxInstance[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl DerefMut for RbxInstance[src]

impl Deref for RbxInstance[src]

type Target = RbxInstanceProperties

The resulting type after dereferencing.

impl Debug for RbxInstance[src]

impl Serialize for RbxInstance[src]

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

Auto Trait Implementations

impl Send for RbxInstance

impl Sync for RbxInstance

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]