pub struct DumpBuilder<State>(/* private fields */);
Expand description
Builder for serializing an instance of the Dump type.
Can be created using the Dump::builder method.
Implementations§
Source§impl DumpBuilder<()>
impl DumpBuilder<()>
Sourcepub fn sqe_process_count<T0>(self, value: T0) -> DumpBuilder<(T0,)>
pub fn sqe_process_count<T0>(self, value: T0) -> DumpBuilder<(T0,)>
Setter for the sqe_process_count
field.
Sourcepub fn sqe_process_count_as_default(self) -> DumpBuilder<(DefaultValue,)>
pub fn sqe_process_count_as_default(self) -> DumpBuilder<(DefaultValue,)>
Sets the sqe_process_count
field to the default value.
Source§impl<T0> DumpBuilder<(T0,)>
impl<T0> DumpBuilder<(T0,)>
Sourcepub fn sqe_miss_count<T1>(self, value: T1) -> DumpBuilder<(T0, T1)>
pub fn sqe_miss_count<T1>(self, value: T1) -> DumpBuilder<(T0, T1)>
Setter for the sqe_miss_count
field.
Sourcepub fn sqe_miss_count_as_default(self) -> DumpBuilder<(T0, DefaultValue)>
pub fn sqe_miss_count_as_default(self) -> DumpBuilder<(T0, DefaultValue)>
Sets the sqe_miss_count
field to the default value.
Source§impl<T0, T1> DumpBuilder<(T0, T1)>
impl<T0, T1> DumpBuilder<(T0, T1)>
Sourcepub fn user_data_miss_count<T2>(self, value: T2) -> DumpBuilder<(T0, T1, T2)>
pub fn user_data_miss_count<T2>(self, value: T2) -> DumpBuilder<(T0, T1, T2)>
Setter for the user_data_miss_count
field.
Sourcepub fn user_data_miss_count_as_default(
self,
) -> DumpBuilder<(T0, T1, DefaultValue)>
pub fn user_data_miss_count_as_default( self, ) -> DumpBuilder<(T0, T1, DefaultValue)>
Sets the user_data_miss_count
field to the default value.
Source§impl<T0, T1, T2> DumpBuilder<(T0, T1, T2)>
impl<T0, T1, T2> DumpBuilder<(T0, T1, T2)>
Trait Implementations§
Source§impl<State: Debug> Debug for DumpBuilder<State>
impl<State: Debug> Debug for DumpBuilder<State>
impl<T0: WriteAsDefault<u64, u64>, T1: WriteAsDefault<u64, u64>, T2: WriteAsDefault<u64, u64>> WriteAs<Offset<Dump>> for DumpBuilder<(T0, T1, T2)>
impl<T0: WriteAsDefault<u64, u64>, T1: WriteAsDefault<u64, u64>, T2: WriteAsDefault<u64, u64>> WriteAsOffset<Dump> for DumpBuilder<(T0, T1, T2)>
impl<T0: WriteAsDefault<u64, u64>, T1: WriteAsDefault<u64, u64>, T2: WriteAsDefault<u64, u64>> WriteAsOptional<Offset<Dump>> for DumpBuilder<(T0, T1, T2)>
Auto Trait Implementations§
impl<State> Freeze for DumpBuilder<State>where
State: Freeze,
impl<State> RefUnwindSafe for DumpBuilder<State>where
State: RefUnwindSafe,
impl<State> Send for DumpBuilder<State>where
State: Send,
impl<State> Sync for DumpBuilder<State>where
State: Sync,
impl<State> Unpin for DumpBuilder<State>where
State: Unpin,
impl<State> UnwindSafe for DumpBuilder<State>where
State: UnwindSafe,
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