Struct azure_devops_rust_api::build::models::BuildLogReference
source · pub struct BuildLogReference {
pub id: i32,
pub type_: String,
pub url: String,
}
Expand description
Represents a reference to a build log.
Fields§
§id: i32
The ID of the log.
type_: String
The type of the log location.
url: String
A full link to the log resource.
Implementations§
Trait Implementations§
source§impl Clone for BuildLogReference
impl Clone for BuildLogReference
source§fn clone(&self) -> BuildLogReference
fn clone(&self) -> BuildLogReference
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 BuildLogReference
impl Debug for BuildLogReference
source§impl<'de> Deserialize<'de> for BuildLogReference
impl<'de> Deserialize<'de> for BuildLogReference
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 BuildLogReference
impl PartialEq for BuildLogReference
source§fn eq(&self, other: &BuildLogReference) -> bool
fn eq(&self, other: &BuildLogReference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for BuildLogReference
impl Serialize for BuildLogReference
impl StructuralPartialEq for BuildLogReference
Auto Trait Implementations§
impl Freeze for BuildLogReference
impl RefUnwindSafe for BuildLogReference
impl Send for BuildLogReference
impl Sync for BuildLogReference
impl Unpin for BuildLogReference
impl UnwindSafe for BuildLogReference
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