pub struct LoggingGrafanacloudlogsAdditional {
pub format: Option<String>,
pub user: Option<String>,
pub url: Option<String>,
pub token: Option<String>,
pub index: Option<String>,
}
Fields§
§format: Option<String>
A Fastly log format string.
user: Option<String>
The Grafana Cloud Logs Dataset you want to log to.
url: Option<String>
The URL of the Loki instance in your Grafana stack.
token: Option<String>
The Grafana Access Policy token with logs:write
access scoped to your Loki instance.
index: Option<String>
The Stream Labels, a JSON string used to identify the stream.
Implementations§
Trait Implementations§
Source§impl Clone for LoggingGrafanacloudlogsAdditional
impl Clone for LoggingGrafanacloudlogsAdditional
Source§fn clone(&self) -> LoggingGrafanacloudlogsAdditional
fn clone(&self) -> LoggingGrafanacloudlogsAdditional
Returns a duplicate 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 Default for LoggingGrafanacloudlogsAdditional
impl Default for LoggingGrafanacloudlogsAdditional
Source§fn default() -> LoggingGrafanacloudlogsAdditional
fn default() -> LoggingGrafanacloudlogsAdditional
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoggingGrafanacloudlogsAdditional
impl<'de> Deserialize<'de> for LoggingGrafanacloudlogsAdditional
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 for LoggingGrafanacloudlogsAdditional
impl PartialEq for LoggingGrafanacloudlogsAdditional
Source§fn eq(&self, other: &LoggingGrafanacloudlogsAdditional) -> bool
fn eq(&self, other: &LoggingGrafanacloudlogsAdditional) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LoggingGrafanacloudlogsAdditional
Auto Trait Implementations§
impl Freeze for LoggingGrafanacloudlogsAdditional
impl RefUnwindSafe for LoggingGrafanacloudlogsAdditional
impl Send for LoggingGrafanacloudlogsAdditional
impl Sync for LoggingGrafanacloudlogsAdditional
impl Unpin for LoggingGrafanacloudlogsAdditional
impl UnwindSafe for LoggingGrafanacloudlogsAdditional
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