pub struct ViewerData {
pub meta: ViewerMeta,
pub records: Vec<Adr>,
pub facets: Facets,
pub graph: Graph,
}Expand description
Data structure embedded in the HTML for JavaScript consumption.
Fields§
§meta: ViewerMetaMetadata about the generation.
records: Vec<Adr>All parsed ADRs.
facets: FacetsFaceted filter data.
graph: GraphRelationship graph.
Trait Implementations§
Source§impl Clone for ViewerData
impl Clone for ViewerData
Source§fn clone(&self) -> ViewerData
fn clone(&self) -> ViewerData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ViewerData
impl Debug for ViewerData
Auto Trait Implementations§
impl Freeze for ViewerData
impl RefUnwindSafe for ViewerData
impl Send for ViewerData
impl Sync for ViewerData
impl Unpin for ViewerData
impl UnwindSafe for ViewerData
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