pub enum PhraseSubclass {
Query,
Statement,
Definition,
}
Expand description
Groups particular Phrase
s together into phrase subclasses.
Variants§
Query
Boolean- or instance queries.
Statement
Postulation, triggers.
Definition
Definitions of Facts, Events, Acts, etc.
Trait Implementations§
Source§impl Clone for PhraseSubclass
impl Clone for PhraseSubclass
Source§fn clone(&self) -> PhraseSubclass
fn clone(&self) -> PhraseSubclass
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 PhraseSubclass
impl Debug for PhraseSubclass
Source§impl EnumDebug for PhraseSubclass
impl EnumDebug for PhraseSubclass
Source§fn type_name() -> &'static str
fn type_name() -> &'static str
Returns the static name of the type used for EnumDebug-printing. Read more
Source§fn variant_names() -> &'static [&'static str]
fn variant_names() -> &'static [&'static str]
Returns all variants in the trait as a list of names. Read more
Source§fn variant_name(&self) -> &'static str
fn variant_name(&self) -> &'static str
Returns the static name of the variant. Read more
Source§fn variant(&self) -> EnumDebugFormatter<'_, Self>
fn variant(&self) -> EnumDebugFormatter<'_, Self>
Returns a formatter for this enum that writes its variant name. Read more
Source§impl Hash for PhraseSubclass
impl Hash for PhraseSubclass
Source§impl PartialEq for PhraseSubclass
impl PartialEq for PhraseSubclass
impl Copy for PhraseSubclass
impl Eq for PhraseSubclass
impl StructuralPartialEq for PhraseSubclass
Auto Trait Implementations§
impl Freeze for PhraseSubclass
impl RefUnwindSafe for PhraseSubclass
impl Send for PhraseSubclass
impl Sync for PhraseSubclass
impl Unpin for PhraseSubclass
impl UnwindSafe for PhraseSubclass
Blanket Implementations§
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