pub struct ParameterProjection {
pub schema_version: u32,
pub nodes: BTreeMap<NodeId, NamespacedNodeParameters>,
pub requires_recompile: bool,
pub structural_patch_count: u32,
pub patches_fingerprint: String,
pub projection_fingerprint: String,
}Fields§
§schema_version: u32§nodes: BTreeMap<NodeId, NamespacedNodeParameters>§requires_recompile: bool§structural_patch_count: u32§patches_fingerprint: String§projection_fingerprint: StringImplementations§
Trait Implementations§
Source§impl Clone for ParameterProjection
impl Clone for ParameterProjection
Source§fn clone(&self) -> ParameterProjection
fn clone(&self) -> ParameterProjection
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 ParameterProjection
impl Debug for ParameterProjection
Source§impl<'de> Deserialize<'de> for ParameterProjection
impl<'de> Deserialize<'de> for ParameterProjection
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
Source§impl PartialEq for ParameterProjection
impl PartialEq for ParameterProjection
Source§impl Serialize for ParameterProjection
impl Serialize for ParameterProjection
impl StructuralPartialEq for ParameterProjection
Auto Trait Implementations§
impl Freeze for ParameterProjection
impl RefUnwindSafe for ParameterProjection
impl Send for ParameterProjection
impl Sync for ParameterProjection
impl Unpin for ParameterProjection
impl UnsafeUnpin for ParameterProjection
impl UnwindSafe for ParameterProjection
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