#[non_exhaustive]pub struct RemoteNetworkProxyConfig {
pub enabled: bool,
pub enable_socks5: bool,
pub enable_socks5_udp: bool,
pub allow_upstream_proxy: bool,
pub dangerously_allow_all_unix_sockets: bool,
pub mode: NetworkMode,
pub domains: Option<NetworkDomainPermissions>,
pub unix_sockets: Option<NetworkUnixSocketPermissions>,
pub allow_local_binding: bool,
pub request_policy_decisions: bool,
}Expand description
Effective network proxy settings that are safe to send to a remote executor.
Listener addresses are deliberately omitted because the executor chooses its own loopback ports. MITM, credential injection, and hooks are not represented so their configuration cannot cross the exec-server boundary accidentally.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.enabled: bool§enable_socks5: bool§enable_socks5_udp: bool§allow_upstream_proxy: bool§dangerously_allow_all_unix_sockets: bool§mode: NetworkMode§domains: Option<NetworkDomainPermissions>§unix_sockets: Option<NetworkUnixSocketPermissions>§allow_local_binding: bool§request_policy_decisions: boolWhether the executor sends domain policy decisions back to the client.
Implementations§
Source§impl RemoteNetworkProxyConfig
impl RemoteNetworkProxyConfig
pub fn from_effective_config(config: &NetworkProxyConfig) -> Result<Self>
Trait Implementations§
Source§impl Clone for RemoteNetworkProxyConfig
impl Clone for RemoteNetworkProxyConfig
Source§fn clone(&self) -> RemoteNetworkProxyConfig
fn clone(&self) -> RemoteNetworkProxyConfig
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 RemoteNetworkProxyConfig
impl Debug for RemoteNetworkProxyConfig
Source§impl<'de> Deserialize<'de> for RemoteNetworkProxyConfig
impl<'de> Deserialize<'de> for RemoteNetworkProxyConfig
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 RemoteNetworkProxyConfig
Source§impl PartialEq for RemoteNetworkProxyConfig
impl PartialEq for RemoteNetworkProxyConfig
Source§impl Serialize for RemoteNetworkProxyConfig
impl Serialize for RemoteNetworkProxyConfig
impl StructuralPartialEq for RemoteNetworkProxyConfig
Auto Trait Implementations§
impl Freeze for RemoteNetworkProxyConfig
impl RefUnwindSafe for RemoteNetworkProxyConfig
impl Send for RemoteNetworkProxyConfig
impl Sync for RemoteNetworkProxyConfig
impl Unpin for RemoteNetworkProxyConfig
impl UnsafeUnpin for RemoteNetworkProxyConfig
impl UnwindSafe for RemoteNetworkProxyConfig
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more