pub struct ParameterPatch {
pub schema_version: u32,
pub node_id: NodeId,
pub namespace: ParameterNamespace,
pub path: Vec<String>,
pub value: Value,
}Fields§
§schema_version: u32§node_id: NodeId§namespace: ParameterNamespace§path: Vec<String>§value: ValueImplementations§
Trait Implementations§
Source§impl Clone for ParameterPatch
impl Clone for ParameterPatch
Source§fn clone(&self) -> ParameterPatch
fn clone(&self) -> ParameterPatch
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 ParameterPatch
impl Debug for ParameterPatch
Source§impl<'de> Deserialize<'de> for ParameterPatch
impl<'de> Deserialize<'de> for ParameterPatch
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 ParameterPatch
impl PartialEq for ParameterPatch
Source§impl Serialize for ParameterPatch
impl Serialize for ParameterPatch
impl StructuralPartialEq for ParameterPatch
Auto Trait Implementations§
impl Freeze for ParameterPatch
impl RefUnwindSafe for ParameterPatch
impl Send for ParameterPatch
impl Sync for ParameterPatch
impl Unpin for ParameterPatch
impl UnsafeUnpin for ParameterPatch
impl UnwindSafe for ParameterPatch
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