pub struct ExternalPropertyFileReferences {Show 17 fields
pub addresses: Option<Vec<ExternalPropertyFileReference>>,
pub artifacts: Option<Vec<ExternalPropertyFileReference>>,
pub conversion: Option<ExternalPropertyFileReference>,
pub driver: Option<ExternalPropertyFileReference>,
pub extensions: Option<Vec<ExternalPropertyFileReference>>,
pub externalized_properties: Option<ExternalPropertyFileReference>,
pub graphs: Option<Vec<ExternalPropertyFileReference>>,
pub invocations: Option<Vec<ExternalPropertyFileReference>>,
pub logical_locations: Option<Vec<ExternalPropertyFileReference>>,
pub policies: Option<Vec<ExternalPropertyFileReference>>,
pub properties: Option<PropertyBag>,
pub results: Option<Vec<ExternalPropertyFileReference>>,
pub taxonomies: Option<Vec<ExternalPropertyFileReference>>,
pub thread_flow_locations: Option<Vec<ExternalPropertyFileReference>>,
pub translations: Option<Vec<ExternalPropertyFileReference>>,
pub web_requests: Option<Vec<ExternalPropertyFileReference>>,
pub web_responses: Option<Vec<ExternalPropertyFileReference>>,
}
Expand description
References to external property files that should be inlined with the content of a root log file.
Fields
addresses: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.addresses arrays to be merged with the root log file.
artifacts: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.artifacts arrays to be merged with the root log file.
conversion: Option<ExternalPropertyFileReference>
An external property file containing a run.conversion object to be merged with the root log file.
driver: Option<ExternalPropertyFileReference>
An external property file containing a run.driver object to be merged with the root log file.
extensions: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.extensions arrays to be merged with the root log file.
externalized_properties: Option<ExternalPropertyFileReference>
An external property file containing a run.properties object to be merged with the root log file.
graphs: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing a run.graphs object to be merged with the root log file.
invocations: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.invocations arrays to be merged with the root log file.
logical_locations: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.logicalLocations arrays to be merged with the root log file.
policies: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.policies arrays to be merged with the root log file.
properties: Option<PropertyBag>
Key/value pairs that provide additional information about the external property files.
results: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.results arrays to be merged with the root log file.
taxonomies: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.taxonomies arrays to be merged with the root log file.
thread_flow_locations: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.threadFlowLocations arrays to be merged with the root log file.
translations: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.translations arrays to be merged with the root log file.
web_requests: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.requests arrays to be merged with the root log file.
web_responses: Option<Vec<ExternalPropertyFileReference>>
An array of external property files containing run.responses arrays to be merged with the root log file.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for ExternalPropertyFileReferences
impl<'de> Deserialize<'de> for ExternalPropertyFileReferences
sourcefn 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
Auto Trait Implementations
impl RefUnwindSafe for ExternalPropertyFileReferences
impl Send for ExternalPropertyFileReferences
impl Sync for ExternalPropertyFileReferences
impl Unpin for ExternalPropertyFileReferences
impl UnwindSafe for ExternalPropertyFileReferences
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more