pub struct ProxyChainSpec {
pub hops: Vec<ProxyHopSpec>,
}Expand description
Specification for a proxy chain (one or more hops).
Fields§
§hops: Vec<ProxyHopSpec>Ordered list of proxy hops.
Trait Implementations§
Source§impl Clone for ProxyChainSpec
impl Clone for ProxyChainSpec
Source§fn clone(&self) -> ProxyChainSpec
fn clone(&self) -> ProxyChainSpec
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 moreSource§impl Debug for ProxyChainSpec
impl Debug for ProxyChainSpec
Source§impl<'de> Deserialize<'de> for ProxyChainSpec
impl<'de> Deserialize<'de> for ProxyChainSpec
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
impl Eq for ProxyChainSpec
Source§impl PartialEq for ProxyChainSpec
impl PartialEq for ProxyChainSpec
Source§impl Serialize for ProxyChainSpec
impl Serialize for ProxyChainSpec
impl StructuralPartialEq for ProxyChainSpec
Auto Trait Implementations§
impl Freeze for ProxyChainSpec
impl RefUnwindSafe for ProxyChainSpec
impl Send for ProxyChainSpec
impl Sync for ProxyChainSpec
impl Unpin for ProxyChainSpec
impl UnsafeUnpin for ProxyChainSpec
impl UnwindSafe for ProxyChainSpec
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