StreamingJsonWriter

Struct StreamingJsonWriter 

Source
pub struct StreamingJsonWriter<W: Write> { /* private fields */ }
Expand description

Streaming JSON writer optimized for allocation data

Implementations§

Source§

impl<W: Write> StreamingJsonWriter<W>

Source

pub fn new(writer: W) -> Result<Self, BinaryExportError>

Create a new streaming JSON writer with default configuration

Source

pub fn with_config( writer: W, config: StreamingJsonWriterConfig, ) -> Result<Self, BinaryExportError>

Create a new streaming JSON writer with custom configuration

Source

pub fn write_header( &mut self, total_allocations: u64, ) -> Result<(), BinaryExportError>

Start writing the JSON document with specified array name (for compatibility)

Source

pub fn write_header_with_array_name( &mut self, _total_allocations: u64, array_name: &str, ) -> Result<(), BinaryExportError>

Start writing the JSON document with custom array name

Source

pub fn write_allocation_selective( &mut self, allocation: &PartialAllocationInfo, requested_fields: &HashSet<AllocationField>, ) -> Result<(), BinaryExportError>

Write a single allocation with selective fields

Source

pub fn write_allocation_selective_with_options( &mut self, allocation: &PartialAllocationInfo, requested_fields: &HashSet<AllocationField>, options: &SelectiveSerializationOptions, ) -> Result<(), BinaryExportError>

Write a single allocation with selective fields and custom serialization options

Source

pub fn write_allocation_full( &mut self, allocation: &AllocationInfo, ) -> Result<(), BinaryExportError>

Write a full allocation (for compatibility)

Source

pub fn write_memory_analysis_allocation( &mut self, allocation: &PartialAllocationInfo, ) -> Result<(), BinaryExportError>

Write allocation in memory_analysis.json format

Source

pub fn write_performance_allocation( &mut self, allocation: &PartialAllocationInfo, ) -> Result<(), BinaryExportError>

Write allocation in performance.json format

Source

pub fn write_unsafe_ffi_allocation( &mut self, allocation: &PartialAllocationInfo, ) -> Result<(), BinaryExportError>

Write allocation in unsafe_ffi.json format

Source

pub fn write_complex_types_allocation( &mut self, allocation: &PartialAllocationInfo, ) -> Result<(), BinaryExportError>

Write allocation in complex_types.json format

Source

pub fn write_lifecycle_event( &mut self, allocation: &PartialAllocationInfo, event_type: &str, ) -> Result<(), BinaryExportError>

Write lifecycle event in lifetime.json format

Source

pub fn write_allocation_batch( &mut self, allocations: &[PartialAllocationInfo], requested_fields: &HashSet<AllocationField>, ) -> Result<(), BinaryExportError>

Write multiple allocations in batch for better performance

Source

pub fn write_allocation_batch_with_options( &mut self, allocations: &[PartialAllocationInfo], requested_fields: &HashSet<AllocationField>, options: &SelectiveSerializationOptions, ) -> Result<(), BinaryExportError>

Write multiple allocations in batch with custom options

Source

pub fn write_allocation_adaptive_chunked( &mut self, allocations: &[PartialAllocationInfo], requested_fields: &HashSet<AllocationField>, options: &SelectiveSerializationOptions, ) -> Result<(), BinaryExportError>

Write allocations with adaptive chunking for optimal performance

Source

pub fn finalize(&mut self) -> Result<StreamingJsonStats, BinaryExportError>

Finalize the JSON document and return statistics

Source

pub fn get_stats(&self) -> &StreamingJsonStats

Get current streaming statistics

Source

pub fn flush(&mut self) -> Result<(), BinaryExportError>

Force flush the writer

Source

pub fn write_raw(&mut self, data: &str) -> Result<(), BinaryExportError>

Write raw string data

Auto Trait Implementations§

§

impl<W> Freeze for StreamingJsonWriter<W>
where W: Freeze,

§

impl<W> RefUnwindSafe for StreamingJsonWriter<W>
where W: RefUnwindSafe,

§

impl<W> Send for StreamingJsonWriter<W>
where W: Send,

§

impl<W> Sync for StreamingJsonWriter<W>
where W: Sync,

§

impl<W> Unpin for StreamingJsonWriter<W>
where W: Unpin,

§

impl<W> UnwindSafe for StreamingJsonWriter<W>
where W: 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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more