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