pub enum Indentation {
Space(usize),
Tab,
}
Expand description
Indentation configuration.
use genco::prelude::*;
use genco::fmt;
let tokens: rust::Tokens = quote! {
fn foo() -> u32 {
42u32
}
};
let mut w = fmt::VecWriter::new();
let fmt = fmt::Config::from_lang::<Rust>()
.with_indentation(fmt::Indentation::Tab);
let config = rust::Config::default();
tokens.format_file(&mut w.as_formatter(&fmt), &config)?;
assert_eq! {
vec![
"fn foo() -> u32 {",
"\t42u32",
"}",
],
w.into_vec(),
};
Variants§
Trait Implementations§
Source§impl Clone for Indentation
impl Clone for Indentation
Source§fn clone(&self) -> Indentation
fn clone(&self) -> Indentation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Indentation
impl Debug for Indentation
impl Copy for Indentation
Auto Trait Implementations§
impl Freeze for Indentation
impl RefUnwindSafe for Indentation
impl Send for Indentation
impl Sync for Indentation
impl Unpin for Indentation
impl UnwindSafe for Indentation
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