pub struct ConfigStoreItem {
pub item_key: Option<String>,
pub item_value: Option<String>,
}
Fields§
§item_key: Option<String>
Item key, maximum 256 characters.
item_value: Option<String>
Item value, maximum 8000 characters.
Implementations§
Source§impl ConfigStoreItem
impl ConfigStoreItem
pub fn new() -> ConfigStoreItem
Trait Implementations§
Source§impl Clone for ConfigStoreItem
impl Clone for ConfigStoreItem
Source§fn clone(&self) -> ConfigStoreItem
fn clone(&self) -> ConfigStoreItem
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 moreSource§impl Debug for ConfigStoreItem
impl Debug for ConfigStoreItem
Source§impl Default for ConfigStoreItem
impl Default for ConfigStoreItem
Source§fn default() -> ConfigStoreItem
fn default() -> ConfigStoreItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigStoreItem
impl<'de> Deserialize<'de> for ConfigStoreItem
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 ConfigStoreItem
impl PartialEq for ConfigStoreItem
Source§impl Serialize for ConfigStoreItem
impl Serialize for ConfigStoreItem
impl StructuralPartialEq for ConfigStoreItem
Auto Trait Implementations§
impl Freeze for ConfigStoreItem
impl RefUnwindSafe for ConfigStoreItem
impl Send for ConfigStoreItem
impl Sync for ConfigStoreItem
impl Unpin for ConfigStoreItem
impl UnwindSafe for ConfigStoreItem
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