rust_format

Struct PrettyPlease

Source
pub struct PrettyPlease { /* private fields */ }
Available on crate feature pretty_please only.
Expand description

This formatter uses prettyplease for formatting source code

From string:

use rust_format::{Formatter, PrettyPlease};

let source = r#"fn main() { println!("Hello World!"); }"#;

let actual = PrettyPlease::default().format_str(source).unwrap();
let expected = r#"fn main() {
    println!("Hello World!");
}
"#;

assert_eq!(expected, actual);

From token stream:

use quote::quote;
use rust_format::{Formatter, PrettyPlease};

let source = quote! { fn main() { println!("Hello World!"); } };

let actual = PrettyPlease::default().format_tokens(source).unwrap();
let expected = r#"fn main() {
    println!("Hello World!");
}
"#;

assert_eq!(expected, actual);

Implementations§

Source§

impl PrettyPlease

Source

pub fn new() -> Self

Creates a new instance of PrettyPlease using a default configuration

Source

pub fn from_config<K, P, V>(config: Config<K, P, V>) -> Self
where K: Default + Eq + Hash + AsRef<OsStr>, P: Default + Into<PathBuf>, V: Default + AsRef<OsStr>,

Creates a new instance of PrettyPlease from the given configuration

Trait Implementations§

Source§

impl Clone for PrettyPlease

Source§

fn clone(&self) -> PrettyPlease

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for PrettyPlease

Source§

fn default() -> PrettyPlease

Returns the “default value” for a type. Read more
Source§

impl Formatter for PrettyPlease

Source§

fn format_str(&self, source: impl AsRef<str>) -> Result<String, Error>

Format the given string and return the results in another String. An error is returned if any issues occur during formatting
Source§

fn format_tokens(&self, tokens: TokenStream) -> Result<String, Error>

Available on crate feature token_stream only.
Format the given TokenStream and return the results in a String. An error is returned if any issues occur during formatting
Source§

fn format_file(&self, path: impl AsRef<Path>) -> Result<(), Error>

Format the given file specified hte path and overwrite the file with the results. An error is returned if any issues occur during formatting

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.