pub struct PreprocessingSnapshot {
pub allow_macro_redeclaration: bool,
pub optimization: OptimizationState,
pub rule_prefix: Option<String>,
pub rule_prefix_template: Option<String>,
pub translations: Option<Vec<String>>,
pub replacements: Vec<String>,
}Fields§
§allow_macro_redeclaration: bool§optimization: OptimizationState§rule_prefix: Option<String>§rule_prefix_template: Option<String>§translations: Option<Vec<String>>§replacements: Vec<String>Trait Implementations§
Source§impl Clone for PreprocessingSnapshot
impl Clone for PreprocessingSnapshot
Source§fn clone(&self) -> PreprocessingSnapshot
fn clone(&self) -> PreprocessingSnapshot
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 PreprocessingSnapshot
impl Debug for PreprocessingSnapshot
Source§impl Default for PreprocessingSnapshot
impl Default for PreprocessingSnapshot
Source§fn default() -> PreprocessingSnapshot
fn default() -> PreprocessingSnapshot
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreprocessingSnapshot
impl<'de> Deserialize<'de> for PreprocessingSnapshot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PreprocessingSnapshot
impl PartialEq for PreprocessingSnapshot
Source§impl Serialize for PreprocessingSnapshot
impl Serialize for PreprocessingSnapshot
impl StructuralPartialEq for PreprocessingSnapshot
Auto Trait Implementations§
impl Freeze for PreprocessingSnapshot
impl RefUnwindSafe for PreprocessingSnapshot
impl Send for PreprocessingSnapshot
impl Sync for PreprocessingSnapshot
impl Unpin for PreprocessingSnapshot
impl UnsafeUnpin for PreprocessingSnapshot
impl UnwindSafe for PreprocessingSnapshot
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