Struct rls_span::compiler::DiagnosticSpanMacroExpansion [−][src]
pub struct DiagnosticSpanMacroExpansion { pub span: DiagnosticSpan, pub macro_decl_name: String, pub def_site_span: Option<DiagnosticSpan>, }
Fields
span: DiagnosticSpan
span where macro was applied to generate this code; note that
this may itself derive from a macro (if
span.expansion.is_some()
)
macro_decl_name: String
name of macro that was applied (e.g., “foo!” or “#[derive(Eq)]”)
def_site_span: Option<DiagnosticSpan>
span where macro was defined (if known)
Trait Implementations
impl Clone for DiagnosticSpanMacroExpansion
[src]
impl Clone for DiagnosticSpanMacroExpansion
[src]fn clone(&self) -> DiagnosticSpanMacroExpansion
[src]
fn clone(&self) -> DiagnosticSpanMacroExpansion
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for DiagnosticSpanMacroExpansion
impl Send for DiagnosticSpanMacroExpansion
impl Sync for DiagnosticSpanMacroExpansion
impl Unpin for DiagnosticSpanMacroExpansion
impl UnwindSafe for DiagnosticSpanMacroExpansion
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more