[][src]Struct mygpoclient::subscription::GetSubscriptionChangesResponse

pub struct GetSubscriptionChangesResponse {
    pub timestamp: u64,
    pub add: Vec<Url>,
    pub remove: Vec<Url>,
}

Fields

timestamp: u64

The timestamp SHOULD be stored by the client in order to provide it in the since parameter in the next request.

add: Vec<Url>

URLs that should be added

remove: Vec<Url>

URLs that should be removed

Trait Implementations

impl Clone for GetSubscriptionChangesResponse[src]

impl Debug for GetSubscriptionChangesResponse[src]

impl Default for GetSubscriptionChangesResponse[src]

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

impl Display for GetSubscriptionChangesResponse[src]

impl Eq for GetSubscriptionChangesResponse[src]

impl Hash for GetSubscriptionChangesResponse[src]

impl Ord for GetSubscriptionChangesResponse[src]

impl PartialEq<GetSubscriptionChangesResponse> for GetSubscriptionChangesResponse[src]

impl PartialOrd<GetSubscriptionChangesResponse> for GetSubscriptionChangesResponse[src]

impl Serialize for GetSubscriptionChangesResponse[src]

impl StructuralEq for GetSubscriptionChangesResponse[src]

impl StructuralPartialEq for GetSubscriptionChangesResponse[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<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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.