Enum ryna::parser::InterfaceHeader
source · pub enum InterfaceHeader {
UnaryOpHeader(Vec<Annotation>, usize, Vec<String>, String, Type, Type),
BinaryOpHeader(Vec<Annotation>, usize, Vec<String>, (String, Type), (String, Type), Type),
NaryOpHeader(Vec<Annotation>, usize, Vec<String>, (String, Type), Vec<(String, Type)>, Type),
FunctionHeader(Vec<Annotation>, String, Option<Vec<String>>, Vec<(String, Type)>, Type),
}Variants§
UnaryOpHeader(Vec<Annotation>, usize, Vec<String>, String, Type, Type)
BinaryOpHeader(Vec<Annotation>, usize, Vec<String>, (String, Type), (String, Type), Type)
NaryOpHeader(Vec<Annotation>, usize, Vec<String>, (String, Type), Vec<(String, Type)>, Type)
FunctionHeader(Vec<Annotation>, String, Option<Vec<String>>, Vec<(String, Type)>, Type)
Trait Implementations§
source§impl Clone for InterfaceHeader
impl Clone for InterfaceHeader
source§fn clone(&self) -> InterfaceHeader
fn clone(&self) -> InterfaceHeader
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 InterfaceHeader
impl Debug for InterfaceHeader
source§impl PartialEq for InterfaceHeader
impl PartialEq for InterfaceHeader
impl Eq for InterfaceHeader
impl StructuralPartialEq for InterfaceHeader
Auto Trait Implementations§
impl Freeze for InterfaceHeader
impl RefUnwindSafe for InterfaceHeader
impl Send for InterfaceHeader
impl Sync for InterfaceHeader
impl Unpin for InterfaceHeader
impl UnwindSafe for InterfaceHeader
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.