pub struct KvStoreRequestCreate {
pub name: String,
}
Fields§
§name: String
A human-readable name for the store. Refer to https://www.fastly.com/documentation/guides/concepts/edge-state/data-stores/#limitations-and-constraints for constraints on the KV store name.
Implementations§
Source§impl KvStoreRequestCreate
impl KvStoreRequestCreate
pub fn new(name: String) -> KvStoreRequestCreate
Trait Implementations§
Source§impl Clone for KvStoreRequestCreate
impl Clone for KvStoreRequestCreate
Source§fn clone(&self) -> KvStoreRequestCreate
fn clone(&self) -> KvStoreRequestCreate
Returns a copy 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 KvStoreRequestCreate
impl Debug for KvStoreRequestCreate
Source§impl Default for KvStoreRequestCreate
impl Default for KvStoreRequestCreate
Source§fn default() -> KvStoreRequestCreate
fn default() -> KvStoreRequestCreate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KvStoreRequestCreate
impl<'de> Deserialize<'de> for KvStoreRequestCreate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KvStoreRequestCreate
impl PartialEq for KvStoreRequestCreate
Source§impl Serialize for KvStoreRequestCreate
impl Serialize for KvStoreRequestCreate
impl StructuralPartialEq for KvStoreRequestCreate
Auto Trait Implementations§
impl Freeze for KvStoreRequestCreate
impl RefUnwindSafe for KvStoreRequestCreate
impl Send for KvStoreRequestCreate
impl Sync for KvStoreRequestCreate
impl Unpin for KvStoreRequestCreate
impl UnwindSafe for KvStoreRequestCreate
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