pub struct IslispFormSpec {
pub symbol: Symbol,
pub role: IslispFormRole,
pub organ: Symbol,
pub doc: &'static str,
}Expand description
Documentation record for one ISLISP defining form.
Describes how a surface symbol in the ISLISP profile maps onto the shared dispatch organ; it carries metadata only, not the lowering behavior itself.
Fields§
§symbol: SymbolQualified surface symbol of the form (for example islisp/defclass).
role: IslispFormRoleRuntime role the form lowers to.
organ: SymbolOrgan symbol that supplies the form’s behavior.
doc: &'static strOne-line human-readable description of the form.
Trait Implementations§
Source§impl Clone for IslispFormSpec
impl Clone for IslispFormSpec
Source§fn clone(&self) -> IslispFormSpec
fn clone(&self) -> IslispFormSpec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IslispFormSpec
impl Debug for IslispFormSpec
impl Eq for IslispFormSpec
Source§impl PartialEq for IslispFormSpec
impl PartialEq for IslispFormSpec
Source§fn eq(&self, other: &IslispFormSpec) -> bool
fn eq(&self, other: &IslispFormSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IslispFormSpec
Auto Trait Implementations§
impl Freeze for IslispFormSpec
impl RefUnwindSafe for IslispFormSpec
impl Send for IslispFormSpec
impl Sync for IslispFormSpec
impl Unpin for IslispFormSpec
impl UnsafeUnpin for IslispFormSpec
impl UnwindSafe for IslispFormSpec
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§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.