pub struct DependentItem {
pub ref_path: String,
pub clear: Option<Value>,
pub value: Option<Value>,
}Expand description
Dependent item structure for transitive dependency tracking
Fields§
§ref_path: String§clear: Option<Value>§value: Option<Value>Trait Implementations§
Source§impl Clone for DependentItem
impl Clone for DependentItem
Source§fn clone(&self) -> DependentItem
fn clone(&self) -> DependentItem
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 DependentItem
impl Debug for DependentItem
Source§impl<'de> Deserialize<'de> for DependentItem
impl<'de> Deserialize<'de> for DependentItem
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 DependentItem
impl RefUnwindSafe for DependentItem
impl Send for DependentItem
impl Sync for DependentItem
impl Unpin for DependentItem
impl UnwindSafe for DependentItem
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