pub struct CompiledArtifact {
pub root_id: u64,
pub view: SerializedView,
}Expand description
Compiled artifact from the build process
Fields§
§root_id: u64The root node ID of the view
view: SerializedViewThe serialized view
Trait Implementations§
Source§impl Clone for CompiledArtifact
impl Clone for CompiledArtifact
Source§fn clone(&self) -> CompiledArtifact
fn clone(&self) -> CompiledArtifact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompiledArtifact
impl Debug for CompiledArtifact
Source§impl<'de> Deserialize<'de> for CompiledArtifact
impl<'de> Deserialize<'de> for CompiledArtifact
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 CompiledArtifact
impl RefUnwindSafe for CompiledArtifact
impl Send for CompiledArtifact
impl Sync for CompiledArtifact
impl Unpin for CompiledArtifact
impl UnsafeUnpin for CompiledArtifact
impl UnwindSafe for CompiledArtifact
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