pub struct ContainerizedExtractor { /* private fields */ }
Expand description
Represents a containerized extractor that processes input files using a container.
Implementations§
Source§impl ContainerizedExtractor
impl ContainerizedExtractor
Sourcepub fn rid(&self) -> &ContainerizedExtractorRid
pub fn rid(&self) -> &ContainerizedExtractorRid
Unique resource identifier for the extractor.
Sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Optional description of the extractor.
Sourcepub fn image(&self) -> &DockerImageSource
pub fn image(&self) -> &DockerImageSource
Container image used to run the extractor.
Sourcepub fn inputs(&self) -> &[FileExtractionInput]
pub fn inputs(&self) -> &[FileExtractionInput]
The input files that this extractor requires, mapped to environment variables that store the path to the file.
Sourcepub fn properties(&self) -> &BTreeMap<PropertyName, PropertyValue>
pub fn properties(&self) -> &BTreeMap<PropertyName, PropertyValue>
Additional properties associated with this extractor.
Sourcepub fn created_at(&self) -> DateTime<Utc>
pub fn created_at(&self) -> DateTime<Utc>
Timestamp when this extractor was created.
Sourcepub fn is_archived(&self) -> bool
pub fn is_archived(&self) -> bool
Whether this extractor is archived.
Sourcepub fn timestamp_metadata(&self) -> &TimestampMetadata
pub fn timestamp_metadata(&self) -> &TimestampMetadata
Metadata about the intermediate parquet this extractor will produce
Sourcepub fn output_file_format(&self) -> &FileOutputFormat
pub fn output_file_format(&self) -> &FileOutputFormat
The format of the output file. Currently only “parquet”, “csv”, “parquet.tar” are supported
Trait Implementations§
Source§impl Clone for ContainerizedExtractor
impl Clone for ContainerizedExtractor
Source§fn clone(&self) -> ContainerizedExtractor
fn clone(&self) -> ContainerizedExtractor
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 ContainerizedExtractor
impl Debug for ContainerizedExtractor
Source§impl<'de> Deserialize<'de> for ContainerizedExtractor
impl<'de> Deserialize<'de> for ContainerizedExtractor
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 From<ContainerizedExtractor> for Builder<Complete>
impl From<ContainerizedExtractor> for Builder<Complete>
Source§fn from(v: ContainerizedExtractor) -> Self
fn from(v: ContainerizedExtractor) -> Self
Converts to this type from the input type.
Source§impl Hash for ContainerizedExtractor
impl Hash for ContainerizedExtractor
Source§impl Ord for ContainerizedExtractor
impl Ord for ContainerizedExtractor
Source§fn cmp(&self, other: &ContainerizedExtractor) -> Ordering
fn cmp(&self, other: &ContainerizedExtractor) -> 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 ContainerizedExtractor
impl PartialEq for ContainerizedExtractor
Source§impl PartialOrd for ContainerizedExtractor
impl PartialOrd for ContainerizedExtractor
Source§impl Serialize for ContainerizedExtractor
impl Serialize for ContainerizedExtractor
impl Eq for ContainerizedExtractor
impl StructuralPartialEq for ContainerizedExtractor
Auto Trait Implementations§
impl Freeze for ContainerizedExtractor
impl RefUnwindSafe for ContainerizedExtractor
impl Send for ContainerizedExtractor
impl Sync for ContainerizedExtractor
impl Unpin for ContainerizedExtractor
impl UnwindSafe for ContainerizedExtractor
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request