pub enum LoggingPlacement {
None,
Null,
}
Expand description
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 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 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 Display for LoggingPlacement
impl Display for LoggingPlacement
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 for LoggingPlacement
impl PartialEq for LoggingPlacement
Source§impl PartialOrd for LoggingPlacement
impl PartialOrd for LoggingPlacement
Source§impl Serialize for LoggingPlacement
impl Serialize for LoggingPlacement
impl Copy for LoggingPlacement
impl Eq for LoggingPlacement
impl StructuralPartialEq for LoggingPlacement
Auto Trait Implementations§
impl Freeze for LoggingPlacement
impl RefUnwindSafe for LoggingPlacement
impl Send for LoggingPlacement
impl Sync for LoggingPlacement
impl Unpin for LoggingPlacement
impl UnwindSafe for LoggingPlacement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.