ReportData

Struct ReportData 

Source
#[repr(C)]
pub(super) struct ReportData<C: 'static> { vtable: &'static ReportVtable, children: Vec<RawReport>, attachments: Vec<RawAttachment>, context: C, }
Expand description

Type-erased report data structure with vtable-based dispatch.

This struct uses #[repr(C)] to enable safe field access in type-erased contexts, allowing access to the vtable and other fields even when the concrete context type C is unknown.

Fields§

§vtable: &'static ReportVtable§children: Vec<RawReport>§attachments: Vec<RawAttachment>§context: C

Implementations§

Source§

impl<C: 'static> ReportData<C>

Source

pub(super) fn new<H: ContextHandler<C>>( context: C, children: Vec<RawReport>, attachments: Vec<RawAttachment>, ) -> Self

Creates a new ReportData with the specified handler, context, children and attachments.

This method creates the vtable for type-erased dispatch and pairs it with the report data.

Auto Trait Implementations§

§

impl<C> Freeze for ReportData<C>
where C: Freeze,

§

impl<C> RefUnwindSafe for ReportData<C>
where C: RefUnwindSafe,

§

impl<C> !Send for ReportData<C>

§

impl<C> !Sync for ReportData<C>

§

impl<C> Unpin for ReportData<C>
where C: Unpin,

§

impl<C> UnwindSafe for ReportData<C>
where C: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.