[][src]Struct rusoto_groundstation::ContactData

pub struct ContactData {
    pub contact_id: Option<String>,
    pub contact_status: Option<String>,
    pub end_time: Option<f64>,
    pub error_message: Option<String>,
    pub ground_station: Option<String>,
    pub maximum_elevation: Option<Elevation>,
    pub mission_profile_arn: Option<String>,
    pub post_pass_end_time: Option<f64>,
    pub pre_pass_start_time: Option<f64>,
    pub region: Option<String>,
    pub satellite_arn: Option<String>,
    pub start_time: Option<f64>,
    pub tags: Option<HashMap<String, String>>,
}

Data describing a contact.

Fields

contact_id: Option<String>

UUID of a contact.

contact_status: Option<String>

Status of a contact.

end_time: Option<f64>

End time of a contact.

error_message: Option<String>

Error message of a contact.

ground_station: Option<String>

Name of a ground station.

maximum_elevation: Option<Elevation>

Maximum elevation angle of a contact.

mission_profile_arn: Option<String>

ARN of a mission profile.

post_pass_end_time: Option<f64>

Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

pre_pass_start_time: Option<f64>

Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

region: Option<String>

Region of a contact.

satellite_arn: Option<String>

ARN of a satellite.

start_time: Option<f64>

Start time of a contact.

tags: Option<HashMap<String, String>>

Tags assigned to a contact.

Trait Implementations

impl Clone for ContactData[src]

impl Debug for ContactData[src]

impl Default for ContactData[src]

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

impl PartialEq<ContactData> for ContactData[src]

impl StructuralPartialEq for ContactData[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.