Struct wasmcloud_host::wasmbus::host_config::Host

source ·
pub struct Host {
Show 29 fields pub ctl_nats_url: Url, pub ctl_jwt: Option<String>, pub ctl_key: Option<Arc<KeyPair>>, pub ctl_tls: bool, pub ctl_topic_prefix: String, pub rpc_nats_url: Url, pub rpc_timeout: Duration, pub rpc_jwt: Option<String>, pub rpc_key: Option<Arc<KeyPair>>, pub rpc_tls: bool, pub lattice: Arc<str>, pub js_domain: Option<String>, pub labels: HashMap<String, String>, pub host_key: Option<Arc<KeyPair>>, pub provider_shutdown_delay: Option<Duration>, pub oci_opts: OciConfig, pub allow_file_load: bool, pub enable_structured_logging: bool, pub log_level: Level, pub config_service_enabled: bool, pub otel_config: OtelConfig, pub policy_service_config: PolicyService, pub secrets_topic_prefix: Option<String>, pub version: String, pub max_execution_time: Duration, pub max_linear_memory: u64, pub max_component_size: u64, pub max_components: u32, pub heartbeat_interval: Option<Duration>,
}
Expand description

wasmCloud Host configuration

Fields§

§ctl_nats_url: Url

NATS URL to connect to for control interface connection

§ctl_jwt: Option<String>

Authentication JWT for control interface connection, must be specified with ctl_key

§ctl_key: Option<Arc<KeyPair>>

Authentication key pair for control interface connection, must be specified with ctl_jwt

§ctl_tls: bool

Whether to require TLS for control interface connection

§ctl_topic_prefix: String

The topic prefix to use for control interface subscriptions, defaults to wasmbus.ctl

§rpc_nats_url: Url

NATS URL to connect to for component RPC

§rpc_timeout: Duration

Timeout period for all RPC calls

§rpc_jwt: Option<String>

Authentication JWT for RPC connection, must be specified with rpc_seed

§rpc_key: Option<Arc<KeyPair>>

Authentication key pair for RPC connection, must be specified with rpc_jwt

§rpc_tls: bool

Whether to require TLS for RPC connection

§lattice: Arc<str>

The lattice the host belongs to

§js_domain: Option<String>

The domain to use for host Jetstream operations

§labels: HashMap<String, String>

Labels (key-value pairs) to add to the host

§host_key: Option<Arc<KeyPair>>

The server key pair used by this host to generate its public key

§provider_shutdown_delay: Option<Duration>

The amount of time to wait for a provider to gracefully shut down before terminating it

§oci_opts: OciConfig

Configuration for downloading artifacts from OCI registries

§allow_file_load: bool

Whether to allow loading component or provider components from the filesystem

§enable_structured_logging: bool

Whether or not structured logging is enabled

§log_level: Level

Log level to pass to capability providers to use. Should be parsed from a tracing::Level

§config_service_enabled: bool

Whether to enable loading supplemental configuration

§otel_config: OtelConfig

configuration for OpenTelemetry tracing

§policy_service_config: PolicyService

configuration for wasmCloud policy service

§secrets_topic_prefix: Option<String>

topic for wasmCloud secrets backend

§version: String

The semver version of the host. This is used by a consumer of this crate to indicate the host version (which may differ from the crate version)

§max_execution_time: Duration

The maximum execution time for a component instance

§max_linear_memory: u64

The maximum linear memory that a component instance can allocate

§max_component_size: u64

The maximum size of a component binary that can be loaded

§max_components: u32

The maximum number of components that can be run simultaneously

§heartbeat_interval: Option<Duration>

The interval at which the Host will send heartbeats

Trait Implementations§

source§

impl Clone for Host

source§

fn clone(&self) -> Host

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Host

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Host

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl Freeze for Host

§

impl RefUnwindSafe for Host

§

impl Send for Host

§

impl Sync for Host

§

impl Unpin for Host

§

impl UnwindSafe for Host

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromRef<T> for T
where T: Clone,

source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
source§

impl<T> FutureExt for T

source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<T> GetSetFdFlags for T

source§

fn get_fd_flags(&self) -> Result<FdFlags, Error>
where T: AsFilelike,

Query the “status” flags for the self file descriptor.
source§

fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>
where T: AsFilelike,

Create a new SetFdFlags value for use with set_fd_flags. Read more
source§

fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>
where T: AsFilelike,

Set the “status” flags for the self file descriptor. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more