#[non_exhaustive]pub struct UpdateXmlClassifierRequestBuilder { /* private fields */ }Expand description
A builder for UpdateXmlClassifierRequest.
Implementations§
source§impl UpdateXmlClassifierRequestBuilder
impl UpdateXmlClassifierRequestBuilder
sourcepub fn classification(self, input: impl Into<String>) -> Self
pub fn classification(self, input: impl Into<String>) -> Self
An identifier of the data format that the classifier matches.
sourcepub fn set_classification(self, input: Option<String>) -> Self
pub fn set_classification(self, input: Option<String>) -> Self
An identifier of the data format that the classifier matches.
sourcepub fn get_classification(&self) -> &Option<String>
pub fn get_classification(&self) -> &Option<String>
An identifier of the data format that the classifier matches.
sourcepub fn row_tag(self, input: impl Into<String>) -> Self
pub fn row_tag(self, input: impl Into<String>) -> Self
The XML tag designating the element that contains each record in an XML document being parsed. This cannot 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).
sourcepub fn set_row_tag(self, input: Option<String>) -> Self
pub fn set_row_tag(self, input: Option<String>) -> Self
The XML tag designating the element that contains each record in an XML document being parsed. This cannot 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).
sourcepub fn get_row_tag(&self) -> &Option<String>
pub fn get_row_tag(&self) -> &Option<String>
The XML tag designating the element that contains each record in an XML document being parsed. This cannot 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).
sourcepub fn build(self) -> UpdateXmlClassifierRequest
pub fn build(self) -> UpdateXmlClassifierRequest
Consumes the builder and constructs a UpdateXmlClassifierRequest.
Trait Implementations§
source§impl Clone for UpdateXmlClassifierRequestBuilder
impl Clone for UpdateXmlClassifierRequestBuilder
source§fn clone(&self) -> UpdateXmlClassifierRequestBuilder
fn clone(&self) -> UpdateXmlClassifierRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateXmlClassifierRequestBuilder
impl Default for UpdateXmlClassifierRequestBuilder
source§fn default() -> UpdateXmlClassifierRequestBuilder
fn default() -> UpdateXmlClassifierRequestBuilder
source§impl PartialEq<UpdateXmlClassifierRequestBuilder> for UpdateXmlClassifierRequestBuilder
impl PartialEq<UpdateXmlClassifierRequestBuilder> for UpdateXmlClassifierRequestBuilder
source§fn eq(&self, other: &UpdateXmlClassifierRequestBuilder) -> bool
fn eq(&self, other: &UpdateXmlClassifierRequestBuilder) -> bool
self and other values to be equal, and is used
by ==.