pub struct ReportCollection { /* private fields */ }
Implementations§
source§impl ReportCollection
impl ReportCollection
pub fn new() -> Ref<Self>
pub fn show(&self, title: &str)
pub fn count(&self) -> usize
pub fn get(&self, i: usize) -> Report<'_>
pub fn add_text(&self, view: &BinaryView, title: &str, contents: &str)
pub fn add_markdown( &self, view: &BinaryView, title: &str, contents: &str, plaintext: &str, )
pub fn add_html( &self, view: &BinaryView, title: &str, contents: &str, plaintext: &str, )
pub fn add_graph(&self, view: &BinaryView, title: &str, graph: &FlowGraph)
pub fn iter(&self) -> ReportCollectionIter<'_> ⓘ
Trait Implementations§
source§impl<'a> IntoIterator for &'a ReportCollection
impl<'a> IntoIterator for &'a ReportCollection
source§impl ToOwned for ReportCollection
impl ToOwned for ReportCollection
source§type Owned = Ref<ReportCollection>
type Owned = Ref<ReportCollection>
The resulting type after obtaining ownership.
source§fn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
Auto Trait Implementations§
impl Freeze for ReportCollection
impl RefUnwindSafe for ReportCollection
impl !Send for ReportCollection
impl !Sync for ReportCollection
impl Unpin for ReportCollection
impl UnwindSafe for ReportCollection
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