[][src]Struct rusoto_groundstation::ListContactsRequest

pub struct ListContactsRequest {
    pub end_time: f64,
    pub ground_station: Option<String>,
    pub max_results: Option<i64>,
    pub mission_profile_arn: Option<String>,
    pub next_token: Option<String>,
    pub satellite_arn: Option<String>,
    pub start_time: f64,
    pub status_list: Vec<String>,
}

Fields

end_time: f64

End time of a contact.

ground_station: Option<String>

Name of a ground station.

max_results: Option<i64>

Maximum number of contacts returned.

mission_profile_arn: Option<String>

ARN of a mission profile.

next_token: Option<String>

Next token returned in the request of a previous ListContacts call. Used to get the next page of results.

satellite_arn: Option<String>

ARN of a satellite.

start_time: f64

Start time of a contact.

status_list: Vec<String>

Status of a contact reservation.

Trait Implementations

impl Clone for ListContactsRequest[src]

impl Debug for ListContactsRequest[src]

impl Default for ListContactsRequest[src]

impl PartialEq<ListContactsRequest> for ListContactsRequest[src]

impl Serialize for ListContactsRequest[src]

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