Struct aply_shared::pubsub::ModifyAckDeadlineRequest[][src]

pub struct ModifyAckDeadlineRequest {
    pub subscription: String,
    pub ack_ids: Vec<String, Global>,
    pub ack_deadline_seconds: i32,
}

Request for the ModifyAckDeadline method.

Fields

subscription: String

Required. The name of the subscription. Format is projects/{project}/subscriptions/{sub}.

ack_ids: Vec<String, Global>

Required. List of acknowledgment IDs.

ack_deadline_seconds: i32

Required. The new ack deadline with respect to the time this request was sent to the Pub/Sub system. For example, if the value is 10, the new ack deadline will expire 10 seconds after the ModifyAckDeadline call was made. Specifying zero might immediately make the message available for delivery to another subscriber client. This typically results in an increase in the rate of message redeliveries (that is, duplicates). The minimum deadline you can specify is 0 seconds. The maximum deadline you can specify is 600 seconds (10 minutes).

Trait Implementations

impl Clone for ModifyAckDeadlineRequest[src]

impl Debug for ModifyAckDeadlineRequest[src]

impl Default for ModifyAckDeadlineRequest[src]

impl Message for ModifyAckDeadlineRequest[src]

impl PartialEq<ModifyAckDeadlineRequest> for ModifyAckDeadlineRequest[src]

impl StructuralPartialEq for ModifyAckDeadlineRequest[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> IntoRequest<T> for 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.

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

impl<T> WithSubscriber for T[src]