pub struct Param {
pub name: Key,
pub tpe: MesType,
}
Expand description
Just a pair of name and type This is a representation of a tree parameter
Example
sequence tree(a:string){...}
and a:string is a param
Fields§
§name: Key
§tpe: MesType
Implementations§
Trait Implementations§
source§impl PartialEq for Param
impl PartialEq for Param
impl StructuralPartialEq for Param
Auto Trait Implementations§
impl RefUnwindSafe for Param
impl Send for Param
impl Sync for Param
impl Unpin for Param
impl UnwindSafe for Param
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