pub enum FExpT {
Now,
Scaled(FExp),
}Expand description
An f-exp-t.
§Requirements
Requires Continuous Effects and Numeric Fluents.
§Usage
Used by TimedEffect.
Variants§
Implementations§
Trait Implementations§
Source§impl Parser for FExpT
Available on crate feature parser only.
impl Parser for FExpT
Available on crate feature
parser only.Source§fn parse<'a, S: Into<Span<'a>>>(input: S) -> ParseResult<'a, Self::Item>
fn parse<'a, S: Into<Span<'a>>>(input: S) -> ParseResult<'a, Self::Item>
See parse_f_exp_t.
type Item = FExpT
Source§fn parse_span(input: Span<'_>) -> ParseResult<'_, Self::Item>
fn parse_span(input: Span<'_>) -> ParseResult<'_, Self::Item>
Parses the
input into the specified Item type.Source§fn from_str(input: &str) -> Result<Self::Item, Err<ParseError<'_>>>
fn from_str(input: &str) -> Result<Self::Item, Err<ParseError<'_>>>
Uses the
Parser::parse method to parse the input and, if successful,
discards the unparsed remaining input.impl StructuralPartialEq for FExpT
Auto Trait Implementations§
impl Freeze for FExpT
impl RefUnwindSafe for FExpT
impl Send for FExpT
impl Sync for FExpT
impl Unpin for FExpT
impl UnwindSafe for FExpT
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