Struct openethereum::cli::SecretStore
source · [−]struct SecretStore {Show 18 fields
disable: Option<bool>,
disable_http: Option<bool>,
disable_auto_migrate: Option<bool>,
acl_contract: Option<String>,
service_contract: Option<String>,
service_contract_srv_gen: Option<String>,
service_contract_srv_retr: Option<String>,
service_contract_doc_store: Option<String>,
service_contract_doc_sretr: Option<String>,
self_secret: Option<String>,
admin_public: Option<String>,
nodes: Option<Vec<String>>,
server_set_contract: Option<String>,
interface: Option<String>,
port: Option<u16>,
http_interface: Option<String>,
http_port: Option<u16>,
path: Option<String>,
}
Fields
disable: Option<bool>
disable_http: Option<bool>
disable_auto_migrate: Option<bool>
acl_contract: Option<String>
service_contract: Option<String>
service_contract_srv_gen: Option<String>
service_contract_srv_retr: Option<String>
service_contract_doc_store: Option<String>
service_contract_doc_sretr: Option<String>
self_secret: Option<String>
admin_public: Option<String>
nodes: Option<Vec<String>>
server_set_contract: Option<String>
interface: Option<String>
port: Option<u16>
http_interface: Option<String>
http_port: Option<u16>
path: Option<String>
Trait Implementations
sourceimpl Debug for SecretStore
impl Debug for SecretStore
sourceimpl Default for SecretStore
impl Default for SecretStore
sourcefn default() -> SecretStore
fn default() -> SecretStore
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for SecretStore
impl<'de> Deserialize<'de> for SecretStore
sourcefn 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
sourceimpl PartialEq<SecretStore> for SecretStore
impl PartialEq<SecretStore> for SecretStore
sourcefn eq(&self, other: &SecretStore) -> bool
fn eq(&self, other: &SecretStore) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SecretStore) -> bool
fn ne(&self, other: &SecretStore) -> bool
This method tests for !=
.
impl StructuralPartialEq for SecretStore
Auto Trait Implementations
impl RefUnwindSafe for SecretStore
impl Send for SecretStore
impl Sync for SecretStore
impl Unpin for SecretStore
impl UnwindSafe for SecretStore
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more