pub struct SceneEntry {
pub scene_id: String,
pub name: String,
pub path: String,
pub topology_layer: String,
pub tags: Vec<String>,
}Expand description
A scene registered in the tapestry manifest.
Fields§
§scene_id: String§name: String§path: StringPath to scene.dream relative to project root.
topology_layer: StringTrait Implementations§
Source§impl Clone for SceneEntry
impl Clone for SceneEntry
Source§fn clone(&self) -> SceneEntry
fn clone(&self) -> SceneEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SceneEntry
impl Debug for SceneEntry
Source§impl<'de> Deserialize<'de> for SceneEntry
impl<'de> Deserialize<'de> for SceneEntry
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 SceneEntry
impl RefUnwindSafe for SceneEntry
impl Send for SceneEntry
impl Sync for SceneEntry
impl Unpin for SceneEntry
impl UnsafeUnpin for SceneEntry
impl UnwindSafe for SceneEntry
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