[][src]Struct leo_typed::LeoTypedAst

pub struct LeoTypedAst { /* fields omitted */ }

Implementations

impl LeoTypedAst[src]

pub fn new<'ast>(program_name: &str, ast: &LeoAst<'ast>) -> Self[src]

Creates a new typed syntax tree from a given program name and abstract syntax tree.

pub fn into_repr(self) -> Program[src]

Returns a reference to the inner typed syntax tree representation.

pub fn to_json_string(&self) -> Result<String, Error>[src]

Serializes the typed syntax tree into a JSON string.

pub fn from_json_string(json: &str) -> Result<Self, Error>[src]

Deserializes the JSON string into a typed syntax tree.

Trait Implementations

impl Debug for LeoTypedAst[src]

impl Eq for LeoTypedAst[src]

impl PartialEq<LeoTypedAst> for LeoTypedAst[src]

impl StructuralEq for LeoTypedAst[src]

impl StructuralPartialEq for LeoTypedAst[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,