Trait chord_core::action::Arg

source ·
pub trait Arg: Sync + Send {
    fn id(&self) -> &dyn Id;
    fn args(&self) -> Result<Value, Error>;
    fn args_raw(&self) -> &Value;
    fn args_init(&self) -> Option<&Value>;
    fn context(&self) -> &dyn Context;
    fn context_mut(&mut self) -> &mut dyn Context;
}

Required Methods

Implementors