pub struct Configuration {
pub prefix_unary_operators: Vec<UnaryOperator>,
pub postfix_unary_operators: Vec<UnaryOperator>,
pub binary_operators: Vec<BinaryOperator>,
pub identifier_prefixes: Vec<char>,
pub adjacency: Option<Adjacency>,
}Fields§
§prefix_unary_operators: Vec<UnaryOperator>§postfix_unary_operators: Vec<UnaryOperator>§binary_operators: Vec<BinaryOperator>§identifier_prefixes: Vec<char>§adjacency: Option<Adjacency>Trait Implementations§
Source§impl Default for Configuration
impl Default for Configuration
Source§fn default() -> Configuration
fn default() -> Configuration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Configuration
impl RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl UnwindSafe for Configuration
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