Struct azure_devops_rust_api::pipelines::logs::Client   
source · pub struct Client(/* private fields */);Implementations§
source§impl Client
 
impl Client
sourcepub fn list(
    &self,
    organization: impl Into<String>,
    project: impl Into<String>,
    pipeline_id: i32,
    run_id: i32
) -> RequestBuilder
 
pub fn list( &self, organization: impl Into<String>, project: impl Into<String>, pipeline_id: i32, run_id: i32 ) -> RequestBuilder
Get a list of logs from a pipeline run.
Arguments:
- organization: The name of the Azure DevOps organization.
- project: Project ID or project name
- pipeline_id: ID of the pipeline.
- run_id: ID of the run of that pipeline.
sourcepub fn get(
    &self,
    organization: impl Into<String>,
    project: impl Into<String>,
    pipeline_id: i32,
    run_id: i32,
    log_id: i32
) -> RequestBuilder
 
pub fn get( &self, organization: impl Into<String>, project: impl Into<String>, pipeline_id: i32, run_id: i32, log_id: i32 ) -> RequestBuilder
Get a specific log from a pipeline run
Arguments:
- organization: The name of the Azure DevOps organization.
- project: Project ID or project name
- pipeline_id: ID of the pipeline.
- run_id: ID of the run of that pipeline.
- log_id: ID of the log.
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
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