pub struct LLMLOptions {
pub indent: String,
pub prefix: String,
pub strict: bool,
}Expand description
Configuration LLMLOptions for LLML formatting
Fields§
§indent: StringIndentation string to use for nested elements
prefix: StringPrefix to prepend to all tags
strict: boolWhether to use strict mode (include parent keys as prefixes in nested objects)
Trait Implementations§
Source§impl Clone for LLMLOptions
impl Clone for LLMLOptions
Source§fn clone(&self) -> LLMLOptions
fn clone(&self) -> LLMLOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LLMLOptions
impl Debug for LLMLOptions
Source§impl Default for LLMLOptions
impl Default for LLMLOptions
Source§fn default() -> LLMLOptions
fn default() -> LLMLOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LLMLOptions
impl RefUnwindSafe for LLMLOptions
impl Send for LLMLOptions
impl Sync for LLMLOptions
impl Unpin for LLMLOptions
impl UnsafeUnpin for LLMLOptions
impl UnwindSafe for LLMLOptions
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