pub struct UnresolvedVariable {
pub variable: String,
pub macro_name: String,
pub candidates: Vec<String>,
pub reason: String,
}Expand description
Information about a variable that couldn’t be resolved
Fields§
§variable: String§macro_name: String§candidates: Vec<String>§reason: StringTrait Implementations§
Source§impl Clone for UnresolvedVariable
impl Clone for UnresolvedVariable
Source§fn clone(&self) -> UnresolvedVariable
fn clone(&self) -> UnresolvedVariable
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 UnresolvedVariable
impl RefUnwindSafe for UnresolvedVariable
impl Send for UnresolvedVariable
impl Sync for UnresolvedVariable
impl Unpin for UnresolvedVariable
impl UnwindSafe for UnresolvedVariable
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