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
impl StructuralPartialEq for LoggingHoneycombAdditional
Auto Trait Implementations§
impl Freeze for LoggingHoneycombAdditional
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