Struct vapcore_secretstore::ServiceConfiguration[][src]

pub struct ServiceConfiguration {
    pub listener_address: Option<NodeAddress>,
    pub service_contract_address: Option<ContractAddress>,
    pub service_contract_srv_gen_address: Option<ContractAddress>,
    pub service_contract_srv_retr_address: Option<ContractAddress>,
    pub service_contract_doc_store_address: Option<ContractAddress>,
    pub service_contract_doc_sretr_address: Option<ContractAddress>,
    pub acl_check_contract_address: Option<ContractAddress>,
    pub cluster_config: ClusterConfiguration,
    pub cors: Option<Vec<String>>,
}

Secret store configuration

Fields

listener_address: Option<NodeAddress>

HTTP listener address. If None, HTTP API is disabled.

service_contract_address: Option<ContractAddress>

Service contract address.

service_contract_srv_gen_address: Option<ContractAddress>

Server key generation service contract address.

service_contract_srv_retr_address: Option<ContractAddress>

Server key retrieval service contract address.

service_contract_doc_store_address: Option<ContractAddress>

Document key store service contract address.

service_contract_doc_sretr_address: Option<ContractAddress>

Document key shadow retrieval service contract address.

acl_check_contract_address: Option<ContractAddress>

ACL check contract address. If None, everyone has access to all keys. Useful for tests only.

cluster_config: ClusterConfiguration

Cluster configuration.

cors: Option<Vec<String>>

Trait Implementations

impl Debug for ServiceConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,