pub struct FlatToken {
pub path: String,
pub value: TokenValue,
pub token_type: Option<String>,
pub description: Option<String>,
}Expand description
A flattened token with its full path and resolved type.
Fields§
§path: String§value: TokenValue§token_type: Option<String>§description: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlatToken
impl RefUnwindSafe for FlatToken
impl Send for FlatToken
impl Sync for FlatToken
impl Unpin for FlatToken
impl UnsafeUnpin for FlatToken
impl UnwindSafe for FlatToken
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