pub struct WriteBulk<'a> {
pub account_identifier: &'a str,
pub namespace_identifier: &'a str,
pub bulk_key_value_pairs: Vec<KeyValuePair>,
}Expand description
Write Key-Value Pairs in Bulk Writes multiple key-value pairs to Workers KV at once. A 404 is returned if a write action is for a namespace ID the account doesn’t have. https://api.cloudflare.com/#workers-kv-namespace-write-multiple-key-value-pairs
Fields§
§account_identifier: &'a str§namespace_identifier: &'a str§bulk_key_value_pairs: Vec<KeyValuePair>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for WriteBulk<'a>
impl<'a> RefUnwindSafe for WriteBulk<'a>
impl<'a> Send for WriteBulk<'a>
impl<'a> Sync for WriteBulk<'a>
impl<'a> Unpin for WriteBulk<'a>
impl<'a> UnwindSafe for WriteBulk<'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