pub struct DeleteEntryBuilder { /* private fields */ }Expand description
Builder for DeleteEntry.
Implementations§
Source§impl DeleteEntryBuilder
impl DeleteEntryBuilder
Sourcepub fn cache_id<VALUE: Into<CacheId>>(&mut self, value: VALUE) -> &mut Self
pub fn cache_id<VALUE: Into<CacheId>>(&mut self, value: VALUE) -> &mut Self
Id of cache where the entry will be deleted.
Sourcepub fn request<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn request<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
URL spec of the request.
Sourcepub fn build(&self) -> Result<DeleteEntry, DeleteEntryBuilderError>
pub fn build(&self) -> Result<DeleteEntry, DeleteEntryBuilderError>
Trait Implementations§
Source§impl Clone for DeleteEntryBuilder
impl Clone for DeleteEntryBuilder
Source§fn clone(&self) -> DeleteEntryBuilder
fn clone(&self) -> DeleteEntryBuilder
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 moreAuto Trait Implementations§
impl Freeze for DeleteEntryBuilder
impl RefUnwindSafe for DeleteEntryBuilder
impl Send for DeleteEntryBuilder
impl Sync for DeleteEntryBuilder
impl Unpin for DeleteEntryBuilder
impl UnsafeUnpin for DeleteEntryBuilder
impl UnwindSafe for DeleteEntryBuilder
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