pub enum ValidationStatus {
Valid,
RejectedMetachar,
RejectedPathTraversal,
RejectedWriteMode,
RejectedEnvVar,
RejectedTooLong,
RejectedUnknown,
}Expand description
Validation status for generated commands.
Variants§
Valid
Command passed all validation checks
RejectedMetachar
Rejected: contains shell metacharacters
RejectedPathTraversal
Rejected: contains path traversal
RejectedWriteMode
Rejected: attempts write operation
RejectedEnvVar
Rejected: contains environment variable
RejectedTooLong
Rejected: exceeds length limit
RejectedUnknown
Rejected: doesn’t match any allowed template
Implementations§
Trait Implementations§
Source§impl Clone for ValidationStatus
impl Clone for ValidationStatus
Source§fn clone(&self) -> ValidationStatus
fn clone(&self) -> ValidationStatus
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 ValidationStatus
impl Debug for ValidationStatus
Source§impl<'de> Deserialize<'de> for ValidationStatus
impl<'de> Deserialize<'de> for ValidationStatus
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 Hash for ValidationStatus
impl Hash for ValidationStatus
Source§impl PartialEq for ValidationStatus
impl PartialEq for ValidationStatus
Source§fn eq(&self, other: &ValidationStatus) -> bool
fn eq(&self, other: &ValidationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ValidationStatus
impl Serialize for ValidationStatus
impl Copy for ValidationStatus
impl Eq for ValidationStatus
impl StructuralPartialEq for ValidationStatus
Auto Trait Implementations§
impl Freeze for ValidationStatus
impl RefUnwindSafe for ValidationStatus
impl Send for ValidationStatus
impl Sync for ValidationStatus
impl Unpin for ValidationStatus
impl UnsafeUnpin for ValidationStatus
impl UnwindSafe for ValidationStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.