pub struct GitlabPipelineAttributes {
pub id: i64,
pub ref_: String,
pub sha: String,
pub status: String,
pub finished_at: Option<String>,
}Fields§
§id: i64§ref_: String§sha: String§status: String§finished_at: Option<String>Trait Implementations§
Source§impl Clone for GitlabPipelineAttributes
impl Clone for GitlabPipelineAttributes
Source§fn clone(&self) -> GitlabPipelineAttributes
fn clone(&self) -> GitlabPipelineAttributes
Returns a duplicate 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 GitlabPipelineAttributes
impl Debug for GitlabPipelineAttributes
Source§impl<'de> Deserialize<'de> for GitlabPipelineAttributes
impl<'de> Deserialize<'de> for GitlabPipelineAttributes
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
Auto Trait Implementations§
impl Freeze for GitlabPipelineAttributes
impl RefUnwindSafe for GitlabPipelineAttributes
impl Send for GitlabPipelineAttributes
impl Sync for GitlabPipelineAttributes
impl Unpin for GitlabPipelineAttributes
impl UnsafeUnpin for GitlabPipelineAttributes
impl UnwindSafe for GitlabPipelineAttributes
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