Skip to content

Commit df7be0b

Browse files
committed
nitpicky naming consistency changes
1 parent c4f39ee commit df7be0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/workerskv/write_bulk.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ use crate::endpoint::{Endpoint, Method};
44
/// Writes multiple key-value pairs to Workers KV at once.
55
/// A 404 is returned if a write action is for a namespace ID the account doesn't have.
66
/// https://api.cloudflare.com/#workers-kv-namespace-write-multiple-key-value-pairs
7-
pub struct BulkWrite<'a> {
7+
pub struct WriteBulk<'a> {
88
pub account_identifier: &'a str,
99
pub namespace_identifier: &'a str,
1010
pub bulk_key_value_pairs: Vec<KeyValuePair>,
1111
}
1212

13-
impl<'a> Endpoint<(), (), Vec<KeyValuePair>> for BulkWrite<'a> {
13+
impl<'a> Endpoint<(), (), Vec<KeyValuePair>> for WriteBulk<'a> {
1414
fn method(&self) -> Method {
1515
Method::Put
1616
}

0 commit comments

Comments
 (0)