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
sourceimpl Clone for ActorConfig
impl Clone for ActorConfig
sourcefn clone(&self) -> ActorConfig
fn clone(&self) -> ActorConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ActorConfig
impl Debug for ActorConfig
sourceimpl Default for ActorConfig
impl Default for ActorConfig
sourcefn default() -> ActorConfig
fn default() -> ActorConfig
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ActorConfig
impl<'de> Deserialize<'de> for ActorConfig
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<ActorConfig> for ActorConfig
impl PartialEq<ActorConfig> for ActorConfig
sourcefn eq(&self, other: &ActorConfig) -> bool
fn eq(&self, other: &ActorConfig) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more