[−][src]Struct libhoney::Builder
Builder is used to create templates for new events, specifying default fields and override settings.
Fields
options: Options
Client Options
Implementations
impl Builder
[src]
pub fn new(options: Options) -> Self
[src]
Creates a new event Builder with emtpy Static or Dynamic fields.
pub fn add_dynamic_field(&mut self, name: &str, func: DynamicFieldFunc)
[src]
add_dynamic_field adds a dynamic field to the builder. Any events created from this builder will get this metric added.
pub fn new_event(&self) -> Event
[src]
new_event creates a new Event prepopulated with fields, dynamic field values, and configuration inherited from the builder.
Trait Implementations
impl Clone for Builder
[src]
impl Debug for Builder
[src]
impl FieldHolder for Builder
[src]
fn add(&mut self, data: HashMap<String, Value>)
[src]
fn add_field(&mut self, name: &str, value: Value)
[src]
add_field adds a field to the current (event/builder) fields
fn add_func<F>(&mut self, func: F) where
F: Fn() -> Result<(String, Value)>,
[src]
F: Fn() -> Result<(String, Value)>,
add_func iterates over the results from func (until Err) and adds the results to the event/builder fields
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T> WithSubscriber for T
[src]
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,