pub enum StringFunction {
Show 24 variants
CheckStrLimit,
Chr,
DelocalizeExpression,
Find,
FindPattern,
Left,
Len,
LocalizedDecimalPoint,
LocalizeExpression,
MatchPattern,
Mid,
Replace,
ResStr,
Right,
SearchAndReplace,
SearchPatternAndReplace,
Split,
Str,
StrComp,
ToLower,
ToUpper,
Trim,
TrimEnd,
TrimStart,
}Expand description
A string function of the expression language.
Names only: what each one computes is the engine’s to document.
Variants§
CheckStrLimit
CheckStrLimit.
Chr
Chr.
DelocalizeExpression
DelocalizeExpression.
Find
Find.
FindPattern
FindPattern.
Left
Left.
Len
Len.
LocalizedDecimalPoint
LocalizedDecimalPoint.
LocalizeExpression
LocalizeExpression.
MatchPattern
MatchPattern.
Mid
Mid.
Replace
Replace.
ResStr
ResStr.
Right
Right.
SearchAndReplace
SearchAndReplace.
SearchPatternAndReplace
SearchPatternAndReplace.
Split
Split.
Str
Str.
StrComp
StrComp.
ToLower
ToLower.
ToUpper
ToUpper.
Trim
Trim.
TrimEnd
TrimEnd.
TrimStart
TrimStart.
Implementations§
Trait Implementations§
Source§impl Clone for StringFunction
impl Clone for StringFunction
Source§fn clone(&self) -> StringFunction
fn clone(&self) -> StringFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StringFunction
Source§impl Debug for StringFunction
impl Debug for StringFunction
impl Eq for StringFunction
Source§impl Hash for StringFunction
impl Hash for StringFunction
Source§impl PartialEq for StringFunction
impl PartialEq for StringFunction
impl StructuralPartialEq for StringFunction
Auto Trait Implementations§
impl Freeze for StringFunction
impl RefUnwindSafe for StringFunction
impl Send for StringFunction
impl Sync for StringFunction
impl Unpin for StringFunction
impl UnsafeUnpin for StringFunction
impl UnwindSafe for StringFunction
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