Struct azure_devops_rust_api::processes::models::ProjectReference
source · pub struct ProjectReference {
pub description: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub url: Option<String>,
}
Expand description
Defines the project reference class.
Fields§
§description: Option<String>
Description of the project
id: Option<String>
The ID of the project
name: Option<String>
Name of the project
url: Option<String>
Url of the project
Implementations§
Trait Implementations§
source§impl Clone for ProjectReference
impl Clone for ProjectReference
source§fn clone(&self) -> ProjectReference
fn clone(&self) -> ProjectReference
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 ProjectReference
impl Debug for ProjectReference
source§impl Default for ProjectReference
impl Default for ProjectReference
source§fn default() -> ProjectReference
fn default() -> ProjectReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ProjectReference
impl<'de> Deserialize<'de> for ProjectReference
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 ProjectReference
impl PartialEq for ProjectReference
source§fn eq(&self, other: &ProjectReference) -> bool
fn eq(&self, other: &ProjectReference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ProjectReference
impl Serialize for ProjectReference
impl StructuralPartialEq for ProjectReference
Auto Trait Implementations§
impl RefUnwindSafe for ProjectReference
impl Send for ProjectReference
impl Sync for ProjectReference
impl Unpin for ProjectReference
impl UnwindSafe for ProjectReference
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