Struct azure_devops_rust_api::build::models::BuildController
source · pub struct BuildController {
pub xaml_build_controller_reference: XamlBuildControllerReference,
pub links: Option<ReferenceLinks>,
pub created_date: Option<OffsetDateTime>,
pub description: Option<String>,
pub enabled: Option<bool>,
pub status: Option<Status>,
pub updated_date: Option<OffsetDateTime>,
pub uri: Option<String>,
}
Expand description
Fields§
§xaml_build_controller_reference: XamlBuildControllerReference
§links: Option<ReferenceLinks>
The class to represent a collection of REST reference links.
created_date: Option<OffsetDateTime>
The date the controller was created.
description: Option<String>
The description of the controller.
enabled: Option<bool>
Indicates whether the controller is enabled.
status: Option<Status>
The status of the controller.
updated_date: Option<OffsetDateTime>
The date the controller was last updated.
uri: Option<String>
The controller’s URI.
Implementations§
Trait Implementations§
source§impl Clone for BuildController
impl Clone for BuildController
source§fn clone(&self) -> BuildController
fn clone(&self) -> BuildController
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 BuildController
impl Debug for BuildController
source§impl Default for BuildController
impl Default for BuildController
source§fn default() -> BuildController
fn default() -> BuildController
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for BuildController
impl<'de> Deserialize<'de> for BuildController
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 BuildController
impl PartialEq for BuildController
source§fn eq(&self, other: &BuildController) -> bool
fn eq(&self, other: &BuildController) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for BuildController
impl Serialize for BuildController
impl StructuralPartialEq for BuildController
Auto Trait Implementations§
impl RefUnwindSafe for BuildController
impl Send for BuildController
impl Sync for BuildController
impl Unpin for BuildController
impl UnwindSafe for BuildController
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