pub struct LoggingHoneycombAllOf {
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 LoggingHoneycombAllOf
impl LoggingHoneycombAllOf
pub fn new() -> LoggingHoneycombAllOf
Trait Implementations§
source§impl Clone for LoggingHoneycombAllOf
impl Clone for LoggingHoneycombAllOf
source§fn clone(&self) -> LoggingHoneycombAllOf
fn clone(&self) -> LoggingHoneycombAllOf
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 LoggingHoneycombAllOf
impl Debug for LoggingHoneycombAllOf
source§impl Default for LoggingHoneycombAllOf
impl Default for LoggingHoneycombAllOf
source§fn default() -> LoggingHoneycombAllOf
fn default() -> LoggingHoneycombAllOf
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LoggingHoneycombAllOf
impl<'de> Deserialize<'de> for LoggingHoneycombAllOf
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<LoggingHoneycombAllOf> for LoggingHoneycombAllOf
impl PartialEq<LoggingHoneycombAllOf> for LoggingHoneycombAllOf
source§fn eq(&self, other: &LoggingHoneycombAllOf) -> bool
fn eq(&self, other: &LoggingHoneycombAllOf) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LoggingHoneycombAllOf
impl Serialize for LoggingHoneycombAllOf
impl StructuralPartialEq for LoggingHoneycombAllOf
Auto Trait Implementations§
impl RefUnwindSafe for LoggingHoneycombAllOf
impl Send for LoggingHoneycombAllOf
impl Sync for LoggingHoneycombAllOf
impl Unpin for LoggingHoneycombAllOf
impl UnwindSafe for LoggingHoneycombAllOf
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