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