pub struct EffectWrite {
pub key: String,
pub value: Value,
}Expand description
A single write effect: resolved key name + value.
Fields§
§key: String§value: ValueTrait Implementations§
Source§impl Clone for EffectWrite
impl Clone for EffectWrite
Source§fn clone(&self) -> EffectWrite
fn clone(&self) -> EffectWrite
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 EffectWrite
impl Debug for EffectWrite
Source§impl<'de> Deserialize<'de> for EffectWrite
impl<'de> Deserialize<'de> for EffectWrite
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 EffectWrite
impl PartialEq for EffectWrite
Source§fn eq(&self, other: &EffectWrite) -> bool
fn eq(&self, other: &EffectWrite) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EffectWrite
impl Serialize for EffectWrite
impl StructuralPartialEq for EffectWrite
Auto Trait Implementations§
impl Freeze for EffectWrite
impl RefUnwindSafe for EffectWrite
impl Send for EffectWrite
impl Sync for EffectWrite
impl Unpin for EffectWrite
impl UnsafeUnpin for EffectWrite
impl UnwindSafe for EffectWrite
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