pub struct DeleteKey<'a> {
pub account_identifier: &'a str,
pub namespace_identifier: &'a str,
pub key: &'a str,
}Expand description
Delete a key-value pair from Workers KV Deletes a given key from the given namespace in Workers KV. Returns 404 if the given namespace id is not found for an account. https://api.cloudflare.com/#workers-kv-namespace-delete-key-value-pair
Fields§
§account_identifier: &'a str§namespace_identifier: &'a str§key: &'a strTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DeleteKey<'a>
impl<'a> RefUnwindSafe for DeleteKey<'a>
impl<'a> Send for DeleteKey<'a>
impl<'a> Sync for DeleteKey<'a>
impl<'a> Unpin for DeleteKey<'a>
impl<'a> UnwindSafe for DeleteKey<'a>
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