pub struct DeleteContainerBuilder { /* private fields */ }
Implementations§
Source§impl DeleteContainerBuilder
impl DeleteContainerBuilder
pub fn new() -> Self
Sourcepub fn put_container(self, container: String) -> Self
pub fn put_container(self, container: String) -> Self
Set the container to the DeleteContainer
structure being built.
Sourcepub fn finish(self) -> Result<CompiledAlba, Error>
pub fn finish(self) -> Result<CompiledAlba, Error>
Finish the builder, returning the compiled DeleteContainer
bytes in the CompiledAlba
type.
Sourcepub fn cloned_finish(&self) -> Result<CompiledAlba, Error>
pub fn cloned_finish(&self) -> Result<CompiledAlba, Error>
Finish the builder, returning the compiled DeleteContainer
bytes in the CompiledAlba
type.
The difference between this method and the finish
is that by using this one you can compile multiple times to recicle the builder.
Trait Implementations§
Source§impl Clone for DeleteContainerBuilder
impl Clone for DeleteContainerBuilder
Source§fn clone(&self) -> DeleteContainerBuilder
fn clone(&self) -> DeleteContainerBuilder
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 DeleteContainerBuilder
impl Debug for DeleteContainerBuilder
Source§impl Default for DeleteContainerBuilder
impl Default for DeleteContainerBuilder
Source§fn default() -> DeleteContainerBuilder
fn default() -> DeleteContainerBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteContainerBuilder
impl RefUnwindSafe for DeleteContainerBuilder
impl Send for DeleteContainerBuilder
impl Sync for DeleteContainerBuilder
impl Unpin for DeleteContainerBuilder
impl UnwindSafe for DeleteContainerBuilder
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