[][src]Struct rusoto_glue::Crawl

pub struct Crawl {
    pub completed_on: Option<f64>,
    pub error_message: Option<String>,
    pub log_group: Option<String>,
    pub log_stream: Option<String>,
    pub started_on: Option<f64>,
    pub state: Option<String>,
}

The details of a crawl in the workflow.

Fields

completed_on: Option<f64>

The date and time on which the crawl completed.

error_message: Option<String>

The error message associated with the crawl.

log_group: Option<String>

The log group associated with the crawl.

log_stream: Option<String>

The log stream associated with the crawl.

started_on: Option<f64>

The date and time on which the crawl started.

state: Option<String>

The state of the crawler.

Trait Implementations

impl Clone for Crawl[src]

impl Debug for Crawl[src]

impl Default for Crawl[src]

impl<'de> Deserialize<'de> for Crawl[src]

impl PartialEq<Crawl> for Crawl[src]

impl StructuralPartialEq for Crawl[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.