TagManager

Struct TagManager 

Source
pub struct TagManager {
Show 35 fields pub tags: Vec<String>, pub Builtin_Layer_0: Option<String>, pub Builtin_Layer_1: Option<String>, pub Builtin_Layer_2: Option<String>, pub Builtin_Layer_3: Option<String>, pub Builtin_Layer_4: Option<String>, pub Builtin_Layer_5: Option<String>, pub Builtin_Layer_6: Option<String>, pub Builtin_Layer_7: Option<String>, pub User_Layer_10: Option<String>, pub User_Layer_11: Option<String>, pub User_Layer_12: Option<String>, pub User_Layer_13: Option<String>, pub User_Layer_14: Option<String>, pub User_Layer_15: Option<String>, pub User_Layer_16: Option<String>, pub User_Layer_17: Option<String>, pub User_Layer_18: Option<String>, pub User_Layer_19: Option<String>, pub User_Layer_20: Option<String>, pub User_Layer_21: Option<String>, pub User_Layer_22: Option<String>, pub User_Layer_23: Option<String>, pub User_Layer_24: Option<String>, pub User_Layer_25: Option<String>, pub User_Layer_26: Option<String>, pub User_Layer_27: Option<String>, pub User_Layer_28: Option<String>, pub User_Layer_29: Option<String>, pub User_Layer_30: Option<String>, pub User_Layer_31: Option<String>, pub User_Layer_8: Option<String>, pub User_Layer_9: Option<String>, pub layers: Option<Vec<String>>, pub m_SortingLayers: Option<Vec<SortingLayerEntry>>,
}
Expand description

TagManager is a class of the Unity engine since version 3.4.0.

Fields§

§tags: Vec<String>§Builtin_Layer_0: Option<String>

String: (3.4.0 - 4.7.2)

§Builtin_Layer_1: Option<String>

String: (3.4.0 - 4.7.2)

§Builtin_Layer_2: Option<String>

String: (3.4.0 - 4.7.2)

§Builtin_Layer_3: Option<String>

String: (3.4.0 - 4.7.2)

§Builtin_Layer_4: Option<String>

String: (3.4.0 - 4.7.2)

§Builtin_Layer_5: Option<String>

String: (3.4.0 - 4.7.2)

§Builtin_Layer_6: Option<String>

String: (3.4.0 - 4.7.2)

§Builtin_Layer_7: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_10: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_11: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_12: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_13: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_14: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_15: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_16: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_17: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_18: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_19: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_20: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_21: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_22: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_23: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_24: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_25: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_26: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_27: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_28: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_29: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_30: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_31: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_8: Option<String>

String: (3.4.0 - 4.7.2)

§User_Layer_9: Option<String>

String: (3.4.0 - 4.7.2)

§layers: Option<Vec<String>>

Vec: (5.0.0f4 - 2022.3.2f1)

§m_SortingLayers: Option<Vec<SortingLayerEntry>>

Vec: (4.3.0 - 2022.3.2f1)

Trait Implementations§

Source§

impl Debug for TagManager

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for TagManager

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for TagManager

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

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.
Source§

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