pub enum TopLevelOperation {
Comment(String),
DefineGlobal(Global),
DefineFunction(FunctionDefinition),
ExternalFunction(ExternalFunction),
}
Variants§
Comment(String)
DefineGlobal(Global)
DefineFunction(FunctionDefinition)
ExternalFunction(ExternalFunction)
Trait Implementations§
Source§impl Clone for TopLevelOperation
impl Clone for TopLevelOperation
Source§fn clone(&self) -> TopLevelOperation
fn clone(&self) -> TopLevelOperation
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 moreAuto Trait Implementations§
impl Freeze for TopLevelOperation
impl RefUnwindSafe for TopLevelOperation
impl Send for TopLevelOperation
impl Sync for TopLevelOperation
impl Unpin for TopLevelOperation
impl UnwindSafe for TopLevelOperation
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