pub struct RecordIdFormat {
pub id: bool,
pub stream_id: bool,
pub cpu: bool,
pub task: bool,
pub time: bool,
}
Expand description
Controls the format of RecordId
.
Fields§
§id: bool
Contains event ID.
stream_id: bool
Contains event stream ID.
cpu: bool
Contains CPU number.
task: bool
Contains task info.
time: bool
Contains timestamp.
Trait Implementations§
Source§impl Clone for RecordIdFormat
impl Clone for RecordIdFormat
Source§fn clone(&self) -> RecordIdFormat
fn clone(&self) -> RecordIdFormat
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 RecordIdFormat
impl Debug for RecordIdFormat
Source§impl Default for RecordIdFormat
impl Default for RecordIdFormat
Source§fn default() -> RecordIdFormat
fn default() -> RecordIdFormat
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RecordIdFormat
impl RefUnwindSafe for RecordIdFormat
impl Send for RecordIdFormat
impl Sync for RecordIdFormat
impl Unpin for RecordIdFormat
impl UnwindSafe for RecordIdFormat
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