pub enum EvaluateModality {
Show 16 variants
Deontic {
dataset: PathBuf,
contract_hash: u64,
},
Epistemic {
dataset: PathBuf,
agent_hash: u64,
},
Paraconsistent {
dataset: PathBuf,
},
Ltl {
dataset: PathBuf,
formula_type: String,
hash_a: u64,
hash_b: u64,
},
Asp {
dataset: PathBuf,
base_index: usize,
},
Dl {
dataset: PathBuf,
sub_class: u64,
super_class: u64,
},
Probabilistic {
weight: f32,
threshold: f32,
},
LinearLogic {
dataset: PathBuf,
quin_index: usize,
},
Dialectical {
dataset: PathBuf,
var1: u64,
var2: u64,
},
Diffusion {
graph_id: String,
},
SpatioTemporal {
action: String,
ax1: f64,
ay1: f64,
ax2: f64,
ay2: f64,
bx1: f64,
by1: f64,
bx2: f64,
by2: f64,
},
Interval {
action: String,
start1: i64,
end1: i64,
start2: i64,
end2: i64,
point: i64,
},
GraphTopology {
dataset: PathBuf,
context: u64,
},
Argumentation {
demo: bool,
dataset: Option<PathBuf>,
},
ControlFeedback {
kp: f64,
ki: f64,
kd: f64,
setpoint: f64,
measurement: f64,
},
NeuroSymbolic {
demo: bool,
},
}Variants§
Deontic
Epistemic
Paraconsistent
Ltl
Asp
Dl
Probabilistic
LinearLogic
Dialectical
Diffusion
SpatioTemporal
Interval
GraphTopology
Argumentation
ControlFeedback
NeuroSymbolic
Trait Implementations§
Source§impl Debug for EvaluateModality
impl Debug for EvaluateModality
Source§impl FromArgMatches for EvaluateModality
impl FromArgMatches for EvaluateModality
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Subcommand for EvaluateModality
impl Subcommand for EvaluateModality
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to [
Command] so it can instantiate self via
[FromArgMatches::update_from_arg_matches_mut] Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for EvaluateModality
impl RefUnwindSafe for EvaluateModality
impl Send for EvaluateModality
impl Sync for EvaluateModality
impl Unpin for EvaluateModality
impl UnsafeUnpin for EvaluateModality
impl UnwindSafe for EvaluateModality
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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