pub enum CanaryMatchType {
Full,
Partial {
matched_length: usize,
},
Encoded {
encoding: String,
},
}Expand description
How a canary token was matched in the response text.
Variants§
Full
Exact full token match.
Partial
Partial substring match.
Encoded
Token found but encoded (Base64, hex, reversed, etc.).
Trait Implementations§
Source§impl Clone for CanaryMatchType
impl Clone for CanaryMatchType
Source§fn clone(&self) -> CanaryMatchType
fn clone(&self) -> CanaryMatchType
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 CanaryMatchType
impl Debug for CanaryMatchType
Source§impl PartialEq for CanaryMatchType
impl PartialEq for CanaryMatchType
impl StructuralPartialEq for CanaryMatchType
Auto Trait Implementations§
impl Freeze for CanaryMatchType
impl RefUnwindSafe for CanaryMatchType
impl Send for CanaryMatchType
impl Sync for CanaryMatchType
impl Unpin for CanaryMatchType
impl UnsafeUnpin for CanaryMatchType
impl UnwindSafe for CanaryMatchType
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