pub struct LoggingHoneycombAdditional {
pub format: Option<String>,
pub dataset: Option<String>,
pub token: Option<String>,
}
Fields§
§format: Option<String>
A Fastly log format string. Must produce valid JSON that Honeycomb can ingest.
dataset: Option<String>
The Honeycomb Dataset you want to log to.
token: Option<String>
The Write Key from the Account page of your Honeycomb account.
Implementations§
source§impl LoggingHoneycombAdditional
impl LoggingHoneycombAdditional
pub fn new() -> LoggingHoneycombAdditional
Trait Implementations§
source§impl Clone for LoggingHoneycombAdditional
impl Clone for LoggingHoneycombAdditional
source§fn clone(&self) -> LoggingHoneycombAdditional
fn clone(&self) -> LoggingHoneycombAdditional
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 moresource§impl Debug for LoggingHoneycombAdditional
impl Debug for LoggingHoneycombAdditional
source§impl Default for LoggingHoneycombAdditional
impl Default for LoggingHoneycombAdditional
source§fn default() -> LoggingHoneycombAdditional
fn default() -> LoggingHoneycombAdditional
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LoggingHoneycombAdditional
impl<'de> Deserialize<'de> for LoggingHoneycombAdditional
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<LoggingHoneycombAdditional> for LoggingHoneycombAdditional
impl PartialEq<LoggingHoneycombAdditional> for LoggingHoneycombAdditional
source§fn eq(&self, other: &LoggingHoneycombAdditional) -> bool
fn eq(&self, other: &LoggingHoneycombAdditional) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LoggingHoneycombAdditional
Auto Trait Implementations§
impl RefUnwindSafe for LoggingHoneycombAdditional
impl Send for LoggingHoneycombAdditional
impl Sync for LoggingHoneycombAdditional
impl Unpin for LoggingHoneycombAdditional
impl UnwindSafe for LoggingHoneycombAdditional
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