pub enum TestOperation {
ValidateApiKey,
CreateApiKey,
ListApiKeys,
RateLimitCheck,
GenerateJwtToken,
ValidateJwtToken,
CheckConsent,
GrantConsent,
VaultOperations,
}
Expand description
Types of operations to test
Variants§
ValidateApiKey
Test API key validation
CreateApiKey
Test API key creation
ListApiKeys
Test API key listing
RateLimitCheck
Test rate limiting
GenerateJwtToken
Test JWT token generation
ValidateJwtToken
Test JWT token validation
CheckConsent
Test consent checking
GrantConsent
Test consent granting
VaultOperations
Test vault operations
Trait Implementations§
Source§impl Clone for TestOperation
impl Clone for TestOperation
Source§fn clone(&self) -> TestOperation
fn clone(&self) -> TestOperation
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 TestOperation
impl Debug for TestOperation
Source§impl Display for TestOperation
impl Display for TestOperation
Source§impl PartialEq for TestOperation
impl PartialEq for TestOperation
impl StructuralPartialEq for TestOperation
Auto Trait Implementations§
impl Freeze for TestOperation
impl RefUnwindSafe for TestOperation
impl Send for TestOperation
impl Sync for TestOperation
impl Unpin for TestOperation
impl UnwindSafe for TestOperation
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> ValidateIp for Twhere
T: ToString,
impl<T> ValidateIp for Twhere
T: ToString,
Source§fn validate_ipv4(&self) -> bool
fn validate_ipv4(&self) -> bool
Validates whether the given string is an IP V4
Source§fn validate_ipv6(&self) -> bool
fn validate_ipv6(&self) -> bool
Validates whether the given string is an IP V6
Source§fn validate_ip(&self) -> bool
fn validate_ip(&self) -> bool
Validates whether the given string is an IP