pub enum StringOperation {
Show 13 variants
Equals = 0,
PlusEquals = 1,
CopyFirstLine = 2,
CutFirstLine = 3,
CutFirstCharacter = 4,
LoadFileContents = 5,
ExportToFile = 6,
GetFileList = 7,
RemoveInstancesOf = 8,
Replace = 9,
CutUpTo = 10,
CutAfter = 11,
Unknown = 12,
}Variants§
Equals = 0
PlusEquals = 1
CopyFirstLine = 2
CutFirstLine = 3
CutFirstCharacter = 4
LoadFileContents = 5
ExportToFile = 6
GetFileList = 7
RemoveInstancesOf = 8
Replace = 9
CutUpTo = 10
CutAfter = 11
Unknown = 12
Implementations§
Source§impl StringOperation
impl StringOperation
pub const fn new(operation: u8) -> StringOperation
Trait Implementations§
Source§impl PartialEq for StringOperation
impl PartialEq for StringOperation
impl StructuralPartialEq for StringOperation
Auto Trait Implementations§
impl Freeze for StringOperation
impl RefUnwindSafe for StringOperation
impl Send for StringOperation
impl Sync for StringOperation
impl Unpin for StringOperation
impl UnwindSafe for StringOperation
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