pub struct ProxyHandle {
pub placeholders: HashMap<String, String>,
pub ca_cert_pem: Vec<u8>,
/* private fields */
}Expand description
Handle to a running proxy. Shuts down on drop.
Fields§
§placeholders: HashMap<String, String>Placeholder tokens generated for secrets. Key = env var name, Value = placeholder.
ca_cert_pem: Vec<u8>CA certificate in PEM format (for injecting into guest trust store).
Auto Trait Implementations§
impl Freeze for ProxyHandle
impl !RefUnwindSafe for ProxyHandle
impl Send for ProxyHandle
impl Sync for ProxyHandle
impl Unpin for ProxyHandle
impl UnsafeUnpin for ProxyHandle
impl !UnwindSafe for ProxyHandle
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