pub struct DeploymentStatuses { /* private fields */ }Expand description
Interface for deployment statuses
Implementations§
Source§impl DeploymentStatuses
impl DeploymentStatuses
Sourcepub fn list(&self) -> Future<Vec<DeploymentStatus>>
pub fn list(&self) -> Future<Vec<DeploymentStatus>>
lists all statuses associated with a deployment
Sourcepub fn create(
&self,
status: &DeploymentStatusOptions,
) -> Future<DeploymentStatus>
pub fn create( &self, status: &DeploymentStatusOptions, ) -> Future<DeploymentStatus>
creates a new deployment status. For convenience, a DeploymentStatusOptions.builder interface is required for building up a request
Auto Trait Implementations§
impl Freeze for DeploymentStatuses
impl !RefUnwindSafe for DeploymentStatuses
impl Send for DeploymentStatuses
impl Sync for DeploymentStatuses
impl Unpin for DeploymentStatuses
impl !UnwindSafe for DeploymentStatuses
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