pub struct IncludeNode {
pub use_parenthesis: bool,
pub is_require: bool,
pub is_once: bool,
pub argument: Box<Node>,
}Fields§
§use_parenthesis: bool§is_require: bool§is_once: bool§argument: Box<Node>Implementations§
Trait Implementations§
Source§impl Clone for IncludeNode
impl Clone for IncludeNode
Source§fn clone(&self) -> IncludeNode
fn clone(&self) -> IncludeNode
Returns a copy of the value. Read more
1.0.0 · 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 IncludeNode
impl Debug for IncludeNode
Source§impl<'de> Deserialize<'de> for IncludeNode
impl<'de> Deserialize<'de> for IncludeNode
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 IncludeNode
impl PartialEq for IncludeNode
Source§impl Serialize for IncludeNode
impl Serialize for IncludeNode
impl StructuralPartialEq for IncludeNode
Auto Trait Implementations§
impl Freeze for IncludeNode
impl RefUnwindSafe for IncludeNode
impl Send for IncludeNode
impl Sync for IncludeNode
impl Unpin for IncludeNode
impl UnwindSafe for IncludeNode
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