pub enum LoggingPlacement {
None,
WafDebug,
Null,
}
Expand description
LoggingPlacement : Where in the generated VCL the logging call should be placed. If not set, endpoints with format_version
of 2 are placed in vcl_log
and those with format_version
of 1 are placed in vcl_deliver
.
Where in the generated VCL the logging call should be placed. If not set, endpoints with format_version
of 2 are placed in vcl_log
and those with format_version
of 1 are placed in vcl_deliver
.
Variants§
Trait Implementations§
source§impl Clone for LoggingPlacement
impl Clone for LoggingPlacement
source§fn clone(&self) -> LoggingPlacement
fn clone(&self) -> LoggingPlacement
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 LoggingPlacement
impl Debug for LoggingPlacement
source§impl Default for LoggingPlacement
impl Default for LoggingPlacement
source§fn default() -> LoggingPlacement
fn default() -> LoggingPlacement
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LoggingPlacement
impl<'de> Deserialize<'de> for LoggingPlacement
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 LoggingPlacement
impl Hash for LoggingPlacement
source§impl Ord for LoggingPlacement
impl Ord for LoggingPlacement
source§fn cmp(&self, other: &LoggingPlacement) -> Ordering
fn cmp(&self, other: &LoggingPlacement) -> 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<LoggingPlacement> for LoggingPlacement
impl PartialEq<LoggingPlacement> for LoggingPlacement
source§fn eq(&self, other: &LoggingPlacement) -> bool
fn eq(&self, other: &LoggingPlacement) -> bool
source§impl PartialOrd<LoggingPlacement> for LoggingPlacement
impl PartialOrd<LoggingPlacement> for LoggingPlacement
source§fn partial_cmp(&self, other: &LoggingPlacement) -> Option<Ordering>
fn partial_cmp(&self, other: &LoggingPlacement) -> 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 LoggingPlacement
impl Serialize for LoggingPlacement
source§impl ToString for LoggingPlacement
impl ToString for LoggingPlacement
impl Copy for LoggingPlacement
impl Eq for LoggingPlacement
impl StructuralEq for LoggingPlacement
impl StructuralPartialEq for LoggingPlacement
Auto Trait Implementations§
impl RefUnwindSafe for LoggingPlacement
impl Send for LoggingPlacement
impl Sync for LoggingPlacement
impl Unpin for LoggingPlacement
impl UnwindSafe for LoggingPlacement
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.