@@ -38,7 +38,7 @@ pub enum OpKind {
38
38
}
39
39
40
40
/// An operation performed to the environment
41
- #[ derive( Clone , Debug , Eq , Hash , Lint , Ord , PartialEq , PartialOrd , Serialize ) ]
41
+ #[ derive( Clone , Debug , Eq , Hash , Ord , PartialEq , PartialOrd , Serialize ) ]
42
42
#[ serde( untagged) ]
43
43
pub enum EnvOp {
44
44
Append ( AppendEnv ) ,
@@ -341,7 +341,7 @@ impl<'de> serde::de::Visitor<'de> for EnvOpVisitor {
341
341
///
342
342
/// The separator used defaults to the path separator for the current
343
343
/// host operating system (':' for unix, ';' for windows)
344
- #[ derive( Clone , Debug , Eq , Hash , Ord , PartialEq , PartialOrd , Serialize ) ]
344
+ #[ derive( Clone , Debug , Eq , Hash , Lint , Ord , PartialEq , PartialOrd , Serialize ) ]
345
345
pub struct AppendEnv {
346
346
pub append : String ,
347
347
pub value : String ,
@@ -430,7 +430,7 @@ impl EnvPriority {
430
430
///
431
431
/// The separator used defaults to the path separator for the current
432
432
/// host operating system (':' for unix, ';' for windows)
433
- #[ derive( Clone , Debug , Eq , Hash , Ord , PartialEq , PartialOrd , Serialize ) ]
433
+ #[ derive( Clone , Debug , Eq , Hash , Lint , Ord , PartialEq , PartialOrd , Serialize ) ]
434
434
pub struct PrependEnv {
435
435
pub prepend : String ,
436
436
pub value : String ,
@@ -476,7 +476,7 @@ impl PrependEnv {
476
476
}
477
477
478
478
/// Operates on an environment variable by setting it to a value
479
- #[ derive( Clone , Debug , Eq , Hash , Ord , PartialEq , PartialOrd , Serialize ) ]
479
+ #[ derive( Clone , Debug , Eq , Hash , Lint , Ord , PartialEq , PartialOrd , Serialize ) ]
480
480
pub struct SetEnv {
481
481
pub set : String ,
482
482
pub value : String ,
0 commit comments