Struct aws_sdk_glue::model::XmlClassifier
source · #[non_exhaustive]pub struct XmlClassifier { /* private fields */ }Expand description
A classifier for XML content.
Implementations§
source§impl XmlClassifier
impl XmlClassifier
sourcepub fn classification(&self) -> Option<&str>
pub fn classification(&self) -> Option<&str>
An identifier of the data format that the classifier matches.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that this classifier was registered.
sourcepub fn last_updated(&self) -> Option<&DateTime>
pub fn last_updated(&self) -> Option<&DateTime>
The time that this classifier was last updated.
sourcepub fn row_tag(&self) -> Option<&str>
pub fn row_tag(&self) -> Option<&str>
The XML tag designating the element that contains each record in an XML document being parsed. This can't identify a self-closing element (closed by />). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example,
is okay, but
is not).
source§impl XmlClassifier
impl XmlClassifier
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture XmlClassifier.
Trait Implementations§
source§impl Clone for XmlClassifier
impl Clone for XmlClassifier
source§fn clone(&self) -> XmlClassifier
fn clone(&self) -> XmlClassifier
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 XmlClassifier
impl Debug for XmlClassifier
source§impl PartialEq<XmlClassifier> for XmlClassifier
impl PartialEq<XmlClassifier> for XmlClassifier
source§fn eq(&self, other: &XmlClassifier) -> bool
fn eq(&self, other: &XmlClassifier) -> bool
This method tests for
self and other values to be equal, and is used
by ==.