[][src]Struct rusoto_glue::CreateXMLClassifierRequest

pub struct CreateXMLClassifierRequest {
    pub classification: String,
    pub name: String,
    pub row_tag: Option<String>,
}

Specifies an XML classifier for CreateClassifier to create.

Fields

classification: String

An identifier of the data format that the classifier matches.

name: String

The name of the classifier.

row_tag: Option<String>

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, <row item_a="A" item_b="B"></row> is okay, but <row item_a="A" item_b="B" /> is not).

Trait Implementations

impl Clone for CreateXMLClassifierRequest[src]

impl Debug for CreateXMLClassifierRequest[src]

impl Default for CreateXMLClassifierRequest[src]

impl PartialEq<CreateXMLClassifierRequest> for CreateXMLClassifierRequest[src]

impl Serialize for CreateXMLClassifierRequest[src]

impl StructuralPartialEq for CreateXMLClassifierRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.