Enum glsl_lang::transpiler::glsl::IndentStyle [−][src]
Indentation style of the output
Variants
No indentation is generated
Items are indented with tabs. In case spaces are needed for alignment,
tabs are assumed to be tab_size characters wide.
Fields of Tabs
Items are indented with spaces.
Fields of Spaces
count: u32Number of space characters used per indent level
Implementations
impl IndentStyle[src]
pub fn write<F>(&self, f: &mut F, levels: u32) -> Result where
F: Write, [src]
F: Write,
Write the current indenting level and style to the output
Trait Implementations
impl Clone for IndentStyle[src]
fn clone(&self) -> IndentStyle[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for IndentStyle[src]
impl Debug for IndentStyle[src]
impl Default for IndentStyle[src]
impl PartialEq<IndentStyle> for IndentStyle[src]
fn eq(&self, other: &IndentStyle) -> bool[src]
fn ne(&self, other: &IndentStyle) -> bool[src]
impl StructuralPartialEq for IndentStyle[src]
Auto Trait Implementations
impl RefUnwindSafe for IndentStyle
impl Send for IndentStyle
impl Sync for IndentStyle
impl Unpin for IndentStyle
impl UnwindSafe for IndentStyle
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoResult<T> for T[src]
type Err = Infallible
pub fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,