Struct glsl_lang::transpiler::glsl::FormattingSettings [−][src]
Formatting settings for the GLSL transpiler
Fields
indent_style: IndentStyleIndentation style of the output
newline_after_open_block: boolInsert newlines after block open braces
newline_before_close_block: boolInsert newlines before block close braces
newline_after_close_block: boolInsert newline after block close brace
struct_field_separator: WhitespaceWhat to insert between fields of a struct
struct_declaration_terminator: WhitespaceWhat to insert after a struct declaration
declaration_terminator: WhitespaceWhat to insert after a declaration
spaces_around_binary_ops: boolInsert spaces around binary ops
statement_terminator: WhitespaceWhat to insert after a statement
function_definition_terminator: WhitespaceWhat to insert after a function definition
Trait Implementations
impl Clone for FormattingSettings[src]
fn clone(&self) -> FormattingSettings[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for FormattingSettings[src]
impl Default for FormattingSettings[src]
impl<'s> From<&'s FormattingSettings> for FormattingState<'s>[src]
fn from(settings: &'s FormattingSettings) -> Self[src]
impl PartialEq<FormattingSettings> for FormattingSettings[src]
fn eq(&self, other: &FormattingSettings) -> bool[src]
fn ne(&self, other: &FormattingSettings) -> bool[src]
impl StructuralPartialEq for FormattingSettings[src]
Auto Trait Implementations
impl RefUnwindSafe for FormattingSettings
impl Send for FormattingSettings
impl Sync for FormattingSettings
impl Unpin for FormattingSettings
impl UnwindSafe for FormattingSettings
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>,