pub struct UnresolvedRef {
pub token_path: String,
pub reference: String,
}Expand description
An unresolved token reference found after resolution.
Fields§
§token_path: StringThe token path that contains the broken reference.
reference: StringThe reference string that couldn’t be resolved (e.g. {color.nonexistent}).
Trait Implementations§
Source§impl Clone for UnresolvedRef
impl Clone for UnresolvedRef
Source§fn clone(&self) -> UnresolvedRef
fn clone(&self) -> UnresolvedRef
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 moreAuto Trait Implementations§
impl Freeze for UnresolvedRef
impl RefUnwindSafe for UnresolvedRef
impl Send for UnresolvedRef
impl Sync for UnresolvedRef
impl Unpin for UnresolvedRef
impl UnsafeUnpin for UnresolvedRef
impl UnwindSafe for UnresolvedRef
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