pub struct CiBuild(/* private fields */);Expand description
A build record for a pipeline of CI jobs.
Implementations§
Source§impl CiBuild
impl CiBuild
pub fn get<'a>(&self, client: &'a dyn Client) -> Result<CiBuildFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &CiBuildFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &CiBuildDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CiBuild
impl RefUnwindSafe for CiBuild
impl Send for CiBuild
impl Sync for CiBuild
impl Unpin for CiBuild
impl UnwindSafe for CiBuild
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