pub struct CompiledExpression {
pub expression: String,
pub compiled_form: String,
pub is_valid: bool,
}Expand description
Compiled FHIRPath expression for reuse
Fields§
§expression: StringThe original expression string
compiled_form: StringInternal representation (implementation-specific)
is_valid: boolWhether the expression is valid
Implementations§
Trait Implementations§
Source§impl Clone for CompiledExpression
impl Clone for CompiledExpression
Source§fn clone(&self) -> CompiledExpression
fn clone(&self) -> CompiledExpression
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CompiledExpression
impl RefUnwindSafe for CompiledExpression
impl Send for CompiledExpression
impl Sync for CompiledExpression
impl Unpin for CompiledExpression
impl UnwindSafe for CompiledExpression
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