pub struct BrowserSignerProxyOptions {
pub timeout: Duration,
pub addr: SocketAddr,
}Expand description
Configuration options for BrowserSignerProxy.
Fields§
§timeout: DurationRequest timeout for the signer extension. Default is 30 seconds.
addr: SocketAddrProxy server IP address and port. Default is 127.0.0.1:7400.
Implementations§
Trait Implementations§
Source§impl Clone for BrowserSignerProxyOptions
impl Clone for BrowserSignerProxyOptions
Source§fn clone(&self) -> BrowserSignerProxyOptions
fn clone(&self) -> BrowserSignerProxyOptions
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 moreSource§impl Debug for BrowserSignerProxyOptions
impl Debug for BrowserSignerProxyOptions
Source§impl Default for BrowserSignerProxyOptions
impl Default for BrowserSignerProxyOptions
Source§impl<'de> Deserialize<'de> for BrowserSignerProxyOptions
impl<'de> Deserialize<'de> for BrowserSignerProxyOptions
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
Auto Trait Implementations§
impl Freeze for BrowserSignerProxyOptions
impl RefUnwindSafe for BrowserSignerProxyOptions
impl Send for BrowserSignerProxyOptions
impl Sync for BrowserSignerProxyOptions
impl Unpin for BrowserSignerProxyOptions
impl UnwindSafe for BrowserSignerProxyOptions
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