pub struct EnhancedStep {
pub step_id: String,
pub title: String,
pub human_message: String,
pub api_data: StepApiData,
pub message_key: MessageKey,
pub math_context: MathContext,
pub presentation: PresentationHints,
}Expand description
Enhanced step with human and API data
Fields§
§step_id: String§title: String§human_message: String§api_data: StepApiData§message_key: MessageKey§math_context: MathContext§presentation: PresentationHintsTrait Implementations§
Source§impl Clone for EnhancedStep
impl Clone for EnhancedStep
Source§fn clone(&self) -> EnhancedStep
fn clone(&self) -> EnhancedStep
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EnhancedStep
impl Debug for EnhancedStep
Source§impl<'de> Deserialize<'de> for EnhancedStep
impl<'de> Deserialize<'de> for EnhancedStep
Source§fn 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
Source§impl From<EnhancedStep> for Step
Conversion to legacy step system
impl From<EnhancedStep> for Step
Conversion to legacy step system
Source§fn from(enhanced_step: EnhancedStep) -> Self
fn from(enhanced_step: EnhancedStep) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EnhancedStep
impl RefUnwindSafe for EnhancedStep
impl Send for EnhancedStep
impl Sync for EnhancedStep
impl Unpin for EnhancedStep
impl UnwindSafe for EnhancedStep
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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