pub struct PathEntry {
pub kind: String,
pub path: Vec<String>,
pub summary: Option<String>,
}Expand description
A path entry describing an item’s location in the module tree.
Fields§
§kind: StringItem kind string, e.g. “module”, “struct”, “enum”, “function”, etc.
path: Vec<String>Components of the fully-qualified path
summary: Option<String>Brief summary (first line of docs)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PathEntry
impl<'de> Deserialize<'de> for PathEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PathEntry
impl RefUnwindSafe for PathEntry
impl Send for PathEntry
impl Sync for PathEntry
impl Unpin for PathEntry
impl UnsafeUnpin for PathEntry
impl UnwindSafe for PathEntry
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