pub struct CellstateAst {
pub version: String,
pub definitions: Vec<Definition>,
}Expand description
The root AST node for a CELLSTATE configuration.
Fields§
§version: String§definitions: Vec<Definition>Trait Implementations§
Source§impl Clone for CellstateAst
impl Clone for CellstateAst
Source§fn clone(&self) -> CellstateAst
fn clone(&self) -> CellstateAst
Returns a duplicate 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 CellstateAst
impl Debug for CellstateAst
Source§impl<'de> Deserialize<'de> for CellstateAst
impl<'de> Deserialize<'de> for CellstateAst
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 CellstateAst
impl PartialEq for CellstateAst
Source§impl Serialize for CellstateAst
impl Serialize for CellstateAst
impl StructuralPartialEq for CellstateAst
Auto Trait Implementations§
impl Freeze for CellstateAst
impl RefUnwindSafe for CellstateAst
impl Send for CellstateAst
impl Sync for CellstateAst
impl Unpin for CellstateAst
impl UnwindSafe for CellstateAst
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