[][src]Struct rusoto_groundstation::ReserveContactRequest

pub struct ReserveContactRequest {
    pub end_time: f64,
    pub ground_station: String,
    pub mission_profile_arn: String,
    pub satellite_arn: String,
    pub start_time: f64,
    pub tags: Option<HashMap<String, String>>,
}

Fields

end_time: f64

End time of a contact.

ground_station: String

Name of a ground station.

mission_profile_arn: String

ARN of a mission profile.

satellite_arn: String

ARN of a satellite

start_time: f64

Start time of a contact.

tags: Option<HashMap<String, String>>

Tags assigned to a contact.

Trait Implementations

impl Clone for ReserveContactRequest[src]

impl Debug for ReserveContactRequest[src]

impl Default for ReserveContactRequest[src]

impl PartialEq<ReserveContactRequest> for ReserveContactRequest[src]

impl Serialize for ReserveContactRequest[src]

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