pub struct EffectiveOutputConfig {
pub name: String,
pub template: String,
pub root: Option<String>,
pub target: String,
pub target_host: String,
pub target_scheme: String,
pub auto_render: bool,
pub delete_on: Vec<OutputDeleteState>,
pub on_failure: OutputFailurePolicy,
pub debounce_ms: u64,
pub vars: BTreeMap<String, Value>,
}Fields§
§name: String§template: String§root: Option<String>§target: String§target_host: String§target_scheme: String§auto_render: bool§delete_on: Vec<OutputDeleteState>§on_failure: OutputFailurePolicy§debounce_ms: u64§vars: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for EffectiveOutputConfig
impl Clone for EffectiveOutputConfig
Source§fn clone(&self) -> EffectiveOutputConfig
fn clone(&self) -> EffectiveOutputConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectiveOutputConfig
impl Debug for EffectiveOutputConfig
impl Eq for EffectiveOutputConfig
Source§impl PartialEq for EffectiveOutputConfig
impl PartialEq for EffectiveOutputConfig
Source§fn eq(&self, other: &EffectiveOutputConfig) -> bool
fn eq(&self, other: &EffectiveOutputConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EffectiveOutputConfig
Auto Trait Implementations§
impl Freeze for EffectiveOutputConfig
impl RefUnwindSafe for EffectiveOutputConfig
impl Send for EffectiveOutputConfig
impl Sync for EffectiveOutputConfig
impl Unpin for EffectiveOutputConfig
impl UnsafeUnpin for EffectiveOutputConfig
impl UnwindSafe for EffectiveOutputConfig
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> 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.