pub struct DeploymentList {
pub total: i64,
pub deployments: Vec<Deployment>,
}Expand description
Deployments List
Fields§
§total: i64Total number of deployments that matched your query.
deployments: Vec<Deployment>List of deployments.
Implementations§
Source§impl DeploymentList
impl DeploymentList
Sourcepub fn deployments(&self) -> &Vec<Deployment>
pub fn deployments(&self) -> &Vec<Deployment>
Get deployments
Trait Implementations§
Source§impl Clone for DeploymentList
impl Clone for DeploymentList
Source§fn clone(&self) -> DeploymentList
fn clone(&self) -> DeploymentList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeploymentList
impl Debug for DeploymentList
Source§impl<'de> Deserialize<'de> for DeploymentList
impl<'de> Deserialize<'de> for DeploymentList
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 Serialize for DeploymentList
impl Serialize for DeploymentList
impl Model for DeploymentList
Auto Trait Implementations§
impl Freeze for DeploymentList
impl RefUnwindSafe for DeploymentList
impl Send for DeploymentList
impl Sync for DeploymentList
impl Unpin for DeploymentList
impl UnsafeUnpin for DeploymentList
impl UnwindSafe for DeploymentList
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