pub struct TaskAgentQueue {
pub id: Option<i32>,
pub name: Option<String>,
pub pool: Option<TaskAgentPoolReference>,
pub project_id: Option<String>,
}Expand description
An agent queue.
Fields§
§id: Option<i32>ID of the queue
name: Option<String>Name of the queue
pool: Option<TaskAgentPoolReference>§project_id: Option<String>Project ID
Implementations§
Trait Implementations§
source§impl Clone for TaskAgentQueue
impl Clone for TaskAgentQueue
source§fn clone(&self) -> TaskAgentQueue
fn clone(&self) -> TaskAgentQueue
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TaskAgentQueue
impl Debug for TaskAgentQueue
source§impl Default for TaskAgentQueue
impl Default for TaskAgentQueue
source§fn default() -> TaskAgentQueue
fn default() -> TaskAgentQueue
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaskAgentQueue
impl<'de> Deserialize<'de> for TaskAgentQueue
source§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
source§impl PartialEq<TaskAgentQueue> for TaskAgentQueue
impl PartialEq<TaskAgentQueue> for TaskAgentQueue
source§fn eq(&self, other: &TaskAgentQueue) -> bool
fn eq(&self, other: &TaskAgentQueue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.