rust_format

Struct RustFmt

Source
pub struct RustFmt { /* private fields */ }
Expand description

This formatter uses rustfmt for formatting source code

An example using a custom configuration:

use rust_format::{Config, Edition, Formatter, RustFmt};

let source = r#"use std::marker; use std::io; mod test; mod impls;"#;

let mut config = Config::new_str()
    .edition(Edition::Rust2018)
    .option("reorder_imports", "false")
    .option("reorder_modules", "false");
let rustfmt = RustFmt::from_config(config);

let actual = rustfmt.format_str(source).unwrap();
let expected = r#"use std::marker;
use std::io;
mod test;
mod impls;
"#;

assert_eq!(expected, actual);

Implementations§

Source§

impl RustFmt

Source

pub fn new() -> Self

Creates a new instance of RustFmt 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 the formatter from the given configuration

Trait Implementations§

Source§

impl Clone for RustFmt

Source§

fn clone(&self) -> RustFmt

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 RustFmt

Source§

fn default() -> Self

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

impl Formatter for RustFmt

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_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
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

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.