Struct google_taskqueue1_beta2::api::TaskQueueAcl [−][src]
pub struct TaskQueueAcl {
pub admin_emails: Option<Vec<String>>,
pub consumer_emails: Option<Vec<String>>,
pub producer_emails: Option<Vec<String>>,
}Expand description
ACLs that are applicable to this TaskQueue object.
This type is not used in any activity, and only used as part of another schema.
Fields
admin_emails: Option<Vec<String>>Email addresses of users who are “admins” of the TaskQueue. This means they can control the queue, eg set ACLs for the queue.
consumer_emails: Option<Vec<String>>Email addresses of users who can “consume” tasks from the TaskQueue. This means they can Dequeue and Delete tasks from the queue.
producer_emails: Option<Vec<String>>Email addresses of users who can “produce” tasks into the TaskQueue. This means they can Insert tasks into the queue.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for TaskQueueAcl
impl Send for TaskQueueAcl
impl Sync for TaskQueueAcl
impl Unpin for TaskQueueAcl
impl UnwindSafe for TaskQueueAcl
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more