pub enum SsrfDecision {
Allowed,
Blocked {
reason: String,
hint: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for SsrfDecision
impl Clone for SsrfDecision
Source§fn clone(&self) -> SsrfDecision
fn clone(&self) -> SsrfDecision
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 moreAuto Trait Implementations§
impl Freeze for SsrfDecision
impl RefUnwindSafe for SsrfDecision
impl Send for SsrfDecision
impl Sync for SsrfDecision
impl Unpin for SsrfDecision
impl UnsafeUnpin for SsrfDecision
impl UnwindSafe for SsrfDecision
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