Struct gapi_grpc::google::pubsub::v1beta2::ModifyAckDeadlineRequest[][src]

pub struct ModifyAckDeadlineRequest {
    pub subscription: String,
    pub ack_id: String,
    pub ack_deadline_seconds: i32,
}

Request for the ModifyAckDeadline method.

Fields

subscription: String

The name of the subscription.

ack_id: String

The acknowledgment ID.

ack_deadline_seconds: i32

The new ack deadline with respect to the time this request was sent to the Pub/Sub system. Must be >= 0. For example, if the value is 10, the new ack deadline will expire 10 seconds after the ModifyAckDeadline call was made. Specifying zero may immediately make the message available for another pull request.

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

impl RefUnwindSafe for ModifyAckDeadlineRequest

impl Send for ModifyAckDeadlineRequest

impl Sync for ModifyAckDeadlineRequest

impl Unpin for ModifyAckDeadlineRequest

impl UnwindSafe for ModifyAckDeadlineRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]