pub enum PathCategory {
Admin,
Api,
Auth,
Config,
Database,
Internal,
Secret,
Test,
Other,
}Expand description
Category of an interesting path
Variants§
Trait Implementations§
Source§impl Clone for PathCategory
impl Clone for PathCategory
Source§fn clone(&self) -> PathCategory
fn clone(&self) -> PathCategory
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 PathCategory
impl Debug for PathCategory
Source§impl<'de> Deserialize<'de> for PathCategory
impl<'de> Deserialize<'de> for PathCategory
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 PathCategory
impl PartialEq for PathCategory
Source§impl Serialize for PathCategory
impl Serialize for PathCategory
impl StructuralPartialEq for PathCategory
Auto Trait Implementations§
impl Freeze for PathCategory
impl RefUnwindSafe for PathCategory
impl Send for PathCategory
impl Sync for PathCategory
impl Unpin for PathCategory
impl UnsafeUnpin for PathCategory
impl UnwindSafe for PathCategory
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