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 for TaskAgentQueue
impl PartialEq 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 ==.source§impl Serialize for TaskAgentQueue
impl Serialize for TaskAgentQueue
impl StructuralPartialEq for TaskAgentQueue
Auto Trait Implementations§
impl Freeze for TaskAgentQueue
impl RefUnwindSafe for TaskAgentQueue
impl Send for TaskAgentQueue
impl Sync for TaskAgentQueue
impl Unpin for TaskAgentQueue
impl UnwindSafe for TaskAgentQueue
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more