pub enum LoggingFormatVersion {
LoggingFormatVersionV1,
LoggingFormatVersionV2,
}
Expand description
LoggingFormatVersion : The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in vcl_log
if format_version
is set to 2
and in vcl_deliver
if format_version
is set to 1
.
The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in vcl_log
if format_version
is set to 2
and in vcl_deliver
if format_version
is set to 1
.
Variants§
Trait Implementations§
source§impl Clone for LoggingFormatVersion
impl Clone for LoggingFormatVersion
source§fn clone(&self) -> LoggingFormatVersion
fn clone(&self) -> LoggingFormatVersion
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 LoggingFormatVersion
impl Debug for LoggingFormatVersion
source§impl Default for LoggingFormatVersion
impl Default for LoggingFormatVersion
source§fn default() -> LoggingFormatVersion
fn default() -> LoggingFormatVersion
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LoggingFormatVersion
impl<'de> Deserialize<'de> for LoggingFormatVersion
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 Hash for LoggingFormatVersion
impl Hash for LoggingFormatVersion
source§impl Ord for LoggingFormatVersion
impl Ord for LoggingFormatVersion
source§fn cmp(&self, other: &LoggingFormatVersion) -> Ordering
fn cmp(&self, other: &LoggingFormatVersion) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<LoggingFormatVersion> for LoggingFormatVersion
impl PartialEq<LoggingFormatVersion> for LoggingFormatVersion
source§fn eq(&self, other: &LoggingFormatVersion) -> bool
fn eq(&self, other: &LoggingFormatVersion) -> bool
source§impl PartialOrd<LoggingFormatVersion> for LoggingFormatVersion
impl PartialOrd<LoggingFormatVersion> for LoggingFormatVersion
source§fn partial_cmp(&self, other: &LoggingFormatVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &LoggingFormatVersion) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for LoggingFormatVersion
impl Serialize for LoggingFormatVersion
source§impl ToString for LoggingFormatVersion
impl ToString for LoggingFormatVersion
impl Copy for LoggingFormatVersion
impl Eq for LoggingFormatVersion
impl StructuralEq for LoggingFormatVersion
impl StructuralPartialEq for LoggingFormatVersion
Auto Trait Implementations§
impl RefUnwindSafe for LoggingFormatVersion
impl Send for LoggingFormatVersion
impl Sync for LoggingFormatVersion
impl Unpin for LoggingFormatVersion
impl UnwindSafe for LoggingFormatVersion
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.