pub struct DevelopmentWatchItem {
pub action: DevelopmentWatchItemAction,
pub ignore: Vec<String>,
pub path: String,
pub target: Option<String>,
}
Fields§
§action: DevelopmentWatchItemAction
§ignore: Vec<String>
§path: String
§target: Option<String>
Trait Implementations§
Source§impl Clone for DevelopmentWatchItem
impl Clone for DevelopmentWatchItem
Source§fn clone(&self) -> DevelopmentWatchItem
fn clone(&self) -> DevelopmentWatchItem
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 DevelopmentWatchItem
impl Debug for DevelopmentWatchItem
Source§impl<'de> Deserialize<'de> for DevelopmentWatchItem
impl<'de> Deserialize<'de> for DevelopmentWatchItem
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 From<&DevelopmentWatchItem> for DevelopmentWatchItem
impl From<&DevelopmentWatchItem> for DevelopmentWatchItem
Source§fn from(value: &DevelopmentWatchItem) -> Self
fn from(value: &DevelopmentWatchItem) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DevelopmentWatchItem
impl PartialEq for DevelopmentWatchItem
Source§impl PartialOrd for DevelopmentWatchItem
impl PartialOrd for DevelopmentWatchItem
Source§impl Serialize for DevelopmentWatchItem
impl Serialize for DevelopmentWatchItem
impl StructuralPartialEq for DevelopmentWatchItem
Auto Trait Implementations§
impl Freeze for DevelopmentWatchItem
impl RefUnwindSafe for DevelopmentWatchItem
impl Send for DevelopmentWatchItem
impl Sync for DevelopmentWatchItem
impl Unpin for DevelopmentWatchItem
impl UnwindSafe for DevelopmentWatchItem
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