pub struct FireblocksConfig {
pub api_key: String,
pub url: String,
pub secret_path: Option<PathBuf>,
pub secret: Option<String>,
pub display_config: DisplayConfig,
pub signer: Signer,
}Fields§
§api_key: String§url: String§secret_path: Option<PathBuf>§secret: Option<String>§display_config: DisplayConfig§signer: SignerImplementations§
Trait Implementations§
Source§impl Clone for FireblocksConfig
impl Clone for FireblocksConfig
Source§fn clone(&self) -> FireblocksConfig
fn clone(&self) -> FireblocksConfig
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 FireblocksConfig
impl Debug for FireblocksConfig
Source§impl Default for FireblocksConfig
impl Default for FireblocksConfig
Source§fn default() -> FireblocksConfig
fn default() -> FireblocksConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FireblocksConfig
impl<'de> Deserialize<'de> for FireblocksConfig
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 FireblocksConfig
impl RefUnwindSafe for FireblocksConfig
impl Send for FireblocksConfig
impl Sync for FireblocksConfig
impl Unpin for FireblocksConfig
impl UnwindSafe for FireblocksConfig
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