Struct holochain_conductor_api::config::conductor::ConductorConfig
source · pub struct ConductorConfig {
pub tracing_override: Option<String>,
pub environment_path: DatabaseRootPath,
pub keystore: KeystoreConfig,
pub dpki: Option<DpkiConfig>,
pub admin_interfaces: Option<Vec<AdminInterfaceConfig>>,
pub network: Option<KitsuneP2pConfig>,
pub db_sync_strategy: DbSyncStrategy,
}
Expand description
All the config information for the conductor
Fields§
§tracing_override: Option<String>
Override the environment specified tracing config.
environment_path: DatabaseRootPath
The path to the database for this conductor; if omitted, chooses a default path.
keystore: KeystoreConfig
Define how Holochain conductor will connect to a keystore.
dpki: Option<DpkiConfig>
Optional DPKI configuration if conductor is using a DPKI app to initalize and manage keys for new instances.
admin_interfaces: Option<Vec<AdminInterfaceConfig>>
Setup admin interfaces to control this conductor through a websocket connection.
network: Option<KitsuneP2pConfig>
Optional config for the network module.
db_sync_strategy: DbSyncStrategy
Override the default database synchronous strategy.
See sqlite documentation for information about database sync levels.
See [DbSyncStrategy
] for details.
This is best left at its default value unless you know what you
are doing.
Implementations§
source§impl ConductorConfig
impl ConductorConfig
sourcepub fn load_yaml(path: &Path) -> ConductorConfigResult<ConductorConfig>
pub fn load_yaml(path: &Path) -> ConductorConfigResult<ConductorConfig>
Create a conductor config from a YAML file path.
sourcepub fn kitsune_tuning_params(&self) -> KitsuneP2pTuningParams
pub fn kitsune_tuning_params(&self) -> KitsuneP2pTuningParams
Get tuning params for this config (default if not set)
Trait Implementations§
source§impl Clone for ConductorConfig
impl Clone for ConductorConfig
source§fn clone(&self) -> ConductorConfig
fn clone(&self) -> ConductorConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ConductorConfig
impl Debug for ConductorConfig
source§impl Default for ConductorConfig
impl Default for ConductorConfig
source§fn default() -> ConductorConfig
fn default() -> ConductorConfig
source§impl<'de> Deserialize<'de> for ConductorConfig
impl<'de> Deserialize<'de> for ConductorConfig
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>,
source§impl PartialEq for ConductorConfig
impl PartialEq for ConductorConfig
source§fn eq(&self, other: &ConductorConfig) -> bool
fn eq(&self, other: &ConductorConfig) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ConductorConfig
impl Serialize for ConductorConfig
impl StructuralPartialEq for ConductorConfig
Auto Trait Implementations§
impl !RefUnwindSafe for ConductorConfig
impl Send for ConductorConfig
impl Sync for ConductorConfig
impl Unpin for ConductorConfig
impl !UnwindSafe for ConductorConfig
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
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
§impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,
§fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.