pub struct Listing {
pub schema: &'static str,
pub kind: String,
pub nodes: Vec<NodeSummary>,
}Expand description
A listing of all nodes of one kind.
Fields§
§schema: &'static strStable schema tag (SCHEMA).
kind: StringThe kind that was listed.
nodes: Vec<NodeSummary>Matching nodes, ordered by key.
Trait Implementations§
impl StructuralPartialEq for Listing
Auto Trait Implementations§
impl Freeze for Listing
impl RefUnwindSafe for Listing
impl Send for Listing
impl Sync for Listing
impl Unpin for Listing
impl UnsafeUnpin for Listing
impl UnwindSafe for Listing
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