pub struct LibraryRepresentation {
pub name: String,
pub scriptClassName: String,
pub thumbnail: Image,
pub thumbnailClassID: i32,
pub flags: Option<u16>,
pub guid: Option<GUID>,
pub localIdentifier: Option<i64>,
pub object: Option<PPtr>,
pub path: Option<String>,
}Expand description
LibraryRepresentation is a sub class of the Unity engine since version 3.4.0.
Fields§
§name: String§scriptClassName: String§thumbnail: Image§thumbnailClassID: i32§flags: Option<u16>u16: (4.0.0 - 2020.1.17f1)
guid: Option<GUID>GUID: (5.1.0f1 - 2020.1.17f1)
localIdentifier: Option<i64>i64: (5.1.0f1 - 2020.1.17f1)
object: Option<PPtr>PPtr<[EditorExtension]>: (3.4.0 - 3.4.2); PPtr<[Object]>: (3.5.0 - 5.0.4f1)
path: Option<String>String: (5.1.0f1 - 2020.1.17f1)
Trait Implementations§
Source§impl Debug for LibraryRepresentation
impl Debug for LibraryRepresentation
Source§impl<'de> Deserialize<'de> for LibraryRepresentation
impl<'de> Deserialize<'de> for LibraryRepresentation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LibraryRepresentation
impl RefUnwindSafe for LibraryRepresentation
impl Send for LibraryRepresentation
impl Sync for LibraryRepresentation
impl Unpin for LibraryRepresentation
impl UnwindSafe for LibraryRepresentation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more