Struct wash_lib::parser::ActorConfig
source · pub struct ActorConfig {
pub claims: Vec<String>,
pub registry: Option<String>,
pub push_insecure: bool,
pub key_directory: PathBuf,
pub filename: Option<String>,
pub wasm_target: String,
pub call_alias: Option<String>,
}Fields§
§claims: Vec<String>The list of provider claims that this actor requires. eg. [“wasmcloud:httpserver”, “wasmcloud:blobstore”]
registry: Option<String>The registry to push to. eg. “localhost:8080”
push_insecure: boolWhether to push to the registry insecurely. Defaults to false.
key_directory: PathBufThe directory to store the private signing keys in.
filename: Option<String>The filename of the signed wasm actor.
wasm_target: StringThe target wasm target to build for. Defaults to “wasm32-unknown-unknown”.
call_alias: Option<String>The call alias of the actor.
Trait Implementations§
source§impl Clone for ActorConfig
impl Clone for ActorConfig
source§fn clone(&self) -> ActorConfig
fn clone(&self) -> ActorConfig
Returns a copy 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 ActorConfig
impl Debug for ActorConfig
source§impl Default for ActorConfig
impl Default for ActorConfig
source§fn default() -> ActorConfig
fn default() -> ActorConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ActorConfig
impl<'de> Deserialize<'de> for ActorConfig
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
source§impl PartialEq<ActorConfig> for ActorConfig
impl PartialEq<ActorConfig> for ActorConfig
source§fn eq(&self, other: &ActorConfig) -> bool
fn eq(&self, other: &ActorConfig) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ActorConfig
impl StructuralEq for ActorConfig
impl StructuralPartialEq for ActorConfig
Auto Trait Implementations§
impl RefUnwindSafe for ActorConfig
impl Send for ActorConfig
impl Sync for ActorConfig
impl Unpin for ActorConfig
impl UnwindSafe for ActorConfig
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.