[][src]Struct amadeus_aws::CloudfrontRow

pub struct CloudfrontRow {
    pub time: DateTime,
    pub edge_location: String,
    pub response_bytes: u64,
    pub remote_ip: IpAddr,
    pub method: Method,
    pub host: String,
    pub url: Url,
    pub status: Option<StatusCode>,
    pub user_agent: Option<String>,
    pub referer: Option<String>,
    pub cookie: Option<String>,
    pub result_type: String,
    pub request_id: String,
    pub request_bytes: u64,
    pub time_taken: Duration,
    pub forwarded_for: Option<String>,
    pub ssl_protocol_cipher: Option<(String, String)>,
    pub response_result_type: String,
    pub http_version: String,
    pub fle_status: Option<String>,
    pub fle_encrypted_fields: Option<String>,
}

Fields

time: DateTimeedge_location: Stringresponse_bytes: u64remote_ip: IpAddrmethod: Methodhost: Stringurl: Urlstatus: Option<StatusCode>user_agent: Option<String>referer: Option<String>cookie: Option<String>result_type: Stringrequest_id: Stringrequest_bytes: u64time_taken: Durationforwarded_for: Option<String>ssl_protocol_cipher: Option<(String, String)>response_result_type: Stringhttp_version: Stringfle_status: Option<String>fle_encrypted_fields: Option<String>

Trait Implementations

impl Clone for CloudfrontRow[src]

impl Data for CloudfrontRow[src]

type Vec = Vec<Self>

type DynamicType = ()

impl Debug for CloudfrontRow[src]

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

impl Eq for CloudfrontRow[src]

impl PartialEq<CloudfrontRow> for CloudfrontRow[src]

impl Serialize for CloudfrontRow[src]

impl StructuralEq for CloudfrontRow[src]

impl StructuralPartialEq for CloudfrontRow[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<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,