pub struct TraceSeqBuilder { /* private fields */ }Expand description
Builder for TraceSeq.
Implementations§
Source§impl TraceSeqBuilder
impl TraceSeqBuilder
Sourcepub fn title<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn title<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The optional “title” fields provide additional free-text information about the trace.
Sourcepub fn description<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn description<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The optional “description” fields provide additional free-text information about the trace.
pub fn common_fields<VALUE: Into<CommonFields>>( &mut self, value: VALUE, ) -> &mut Self
pub fn vantage_point<VALUE: Into<VantagePoint>>( &mut self, value: VALUE, ) -> &mut Self
Trait Implementations§
Source§impl Clone for TraceSeqBuilder
impl Clone for TraceSeqBuilder
Source§fn clone(&self) -> TraceSeqBuilder
fn clone(&self) -> TraceSeqBuilder
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for TraceSeqBuilder
impl RefUnwindSafe for TraceSeqBuilder
impl Send for TraceSeqBuilder
impl Sync for TraceSeqBuilder
impl Unpin for TraceSeqBuilder
impl UnwindSafe for TraceSeqBuilder
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