pub struct PathValue<T> {
pub path: Span,
pub value: T,
}
Expand description
Represents the path-value pair parsed from the meta
.
Fields§
§path: Span
The path of the meta.
value: T
The value parsed from the meta.
Trait Implementations§
Source§impl<T> ConvertParsed for PathValue<T>where
T: ConvertParsed,
impl<T> ConvertParsed for PathValue<T>where
T: ConvertParsed,
Auto Trait Implementations§
impl<T> Freeze for PathValue<T>where
T: Freeze,
impl<T> RefUnwindSafe for PathValue<T>where
T: RefUnwindSafe,
impl<T> !Send for PathValue<T>
impl<T> !Sync for PathValue<T>
impl<T> Unpin for PathValue<T>where
T: Unpin,
impl<T> UnwindSafe for PathValue<T>where
T: UnwindSafe,
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