[][src]Struct ahum_dialoguer::Editor

pub struct Editor { /* fields omitted */ }

Launches the default editor edit a string.

Example:

use ahum_dialoguer::Editor;

if let Some(rv) = Editor::new().edit("Enter a commit message").unwrap() {
    println!("Your message:");
    println!("{}", rv);
} else {
    println!("Abort!");
}

Methods

impl Editor[src]

pub fn new() -> Editor[src]

Creates a new editor.

pub fn executable<S: AsRef<OsStr>>(&mut self, val: S) -> &mut Editor[src]

Sets a specific editor executable.

pub fn extension(&mut self, val: &str) -> &mut Editor[src]

Sets a specific extension

pub fn require_save(&mut self, val: bool) -> &mut Editor[src]

Enables or disables the save requirement.

pub fn trim_newlines(&mut self, val: bool) -> &mut Editor[src]

Enables or disables trailing newline stripping.

This is on by default.

pub fn edit(&self, s: &str) -> Result<Option<String>>[src]

Launches the editor to edit a string.

Returns None if the file was not saved or otherwise the entered text.

Auto Trait Implementations

impl Send for Editor

impl Sync for Editor

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]