pub struct FieldInstanceEntityReference {
pub entity_iid: String,
pub layer_iid: String,
pub level_iid: String,
pub world_iid: String,
}
Expand description
This object is used in Field Instances to describe an EntityRef value.
Fields§
§entity_iid: String
IID of the refered EntityInstance
layer_iid: String
IID of the LayerInstance containing the refered EntityInstance
level_iid: String
IID of the Level containing the refered EntityInstance
world_iid: String
IID of the World containing the refered EntityInstance
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FieldInstanceEntityReference
impl<'de> Deserialize<'de> for FieldInstanceEntityReference
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 FieldInstanceEntityReference
impl RefUnwindSafe for FieldInstanceEntityReference
impl Send for FieldInstanceEntityReference
impl Sync for FieldInstanceEntityReference
impl Unpin for FieldInstanceEntityReference
impl UnwindSafe for FieldInstanceEntityReference
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