pub struct PproxyChain {
pub raw: String,
pub hops: Vec<PproxyUri>,
}Expand description
A parsed pproxy chain (one or more hops separated by __).
Fields§
§raw: StringThe raw input string.
hops: Vec<PproxyUri>Parsed hops in order (left = first hop, right = the last hop).
Implementations§
Source§impl PproxyChain
impl PproxyChain
Sourcepub fn redacted_display(&self) -> String
pub fn redacted_display(&self) -> String
Redacted display showing all hops separated by __.
Trait Implementations§
Source§impl Clone for PproxyChain
impl Clone for PproxyChain
Source§fn clone(&self) -> PproxyChain
fn clone(&self) -> PproxyChain
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 moreAuto Trait Implementations§
impl Freeze for PproxyChain
impl RefUnwindSafe for PproxyChain
impl Send for PproxyChain
impl Sync for PproxyChain
impl Unpin for PproxyChain
impl UnsafeUnpin for PproxyChain
impl UnwindSafe for PproxyChain
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