Struct sway_core::decl_engine::DeclRef
source · pub struct DeclRef<I> {
pub name: Ident,
pub id: I,
pub decl_span: Span,
}
Expand description
Represents the use of / syntactic reference to a declaration. A smart-wrapper around a DeclId, containing additional information about a declaration.
Fields§
§name: Ident
The name of the declaration.
id: I
The index into the DeclEngine.
decl_span: Span
The Span of the entire declaration.
Trait Implementations§
source§impl TryFrom<&DeclRef<FunctionalDeclId>> for DeclRefFunction
impl TryFrom<&DeclRef<FunctionalDeclId>> for DeclRefFunction
§type Error = CompileError
type Error = CompileError
The type returned in the event of a conversion error.
source§impl TryFrom<DeclRef<FunctionalDeclId>> for DeclRefFunction
impl TryFrom<DeclRef<FunctionalDeclId>> for DeclRefFunction
§type Error = CompileError
type Error = CompileError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl<I> RefUnwindSafe for DeclRef<I>where I: RefUnwindSafe,
impl<I> Send for DeclRef<I>where I: Send,
impl<I> Sync for DeclRef<I>where I: Sync,
impl<I> Unpin for DeclRef<I>where I: Unpin,
impl<I> UnwindSafe for DeclRef<I>where I: UnwindSafe,
Blanket Implementations§
source§impl<T> AnyDebug for Twhere
T: Any + Debug,
impl<T> AnyDebug for Twhere T: Any + Debug,
source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns a reference to the underlying type as
Any
.§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.