Struct tokio_beanstalkd::Job[][src]

pub struct Job {
    pub id: Id,
    pub bytes: usize,
    pub data: Vec<u8>,
}

A job according to Beanstalkd

Fields

The ID job assigned by Beanstalkd

The size of the payload

The payload

Trait Implementations

impl Debug for Job
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Job
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Job
[src]

Auto Trait Implementations

impl Send for Job

impl Sync for Job