pub struct PropertiesContent { /* private fields */ }Expand description
Properties configuration content.
This type provides CRUD operations for Properties configuration data.
Implementations§
Trait Implementations§
Source§impl Clone for PropertiesContent
impl Clone for PropertiesContent
Source§fn clone(&self) -> PropertiesContent
fn clone(&self) -> PropertiesContent
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 ConfigContent for PropertiesContent
impl ConfigContent for PropertiesContent
Source§fn insert(&mut self, key: &Key, value: &Value) -> ConfigResult<()>
fn insert(&mut self, key: &Key, value: &Value) -> ConfigResult<()>
Insert a new value at the specified key path. Read more
Source§fn update(&mut self, key: &Key, value: &Value) -> ConfigResult<()>
fn update(&mut self, key: &Key, value: &Value) -> ConfigResult<()>
Update an existing value at the specified key path. Read more
Source§fn delete(&mut self, key: &Key) -> ConfigResult<()>
fn delete(&mut self, key: &Key) -> ConfigResult<()>
Delete a value at the specified key path. Read more
Source§fn upsert(&mut self, key: &Key, value: &Value) -> ConfigResult<()>
fn upsert(&mut self, key: &Key, value: &Value) -> ConfigResult<()>
Upsert (insert or update) a value at the specified key path. Read more
Source§fn contains_key(&self, key: &Key) -> bool
fn contains_key(&self, key: &Key) -> bool
Check if a key exists.
Source§impl Debug for PropertiesContent
impl Debug for PropertiesContent
Source§impl Display for PropertiesContent
impl Display for PropertiesContent
Source§impl FromStr for PropertiesContent
impl FromStr for PropertiesContent
Source§impl PartialEq for PropertiesContent
impl PartialEq for PropertiesContent
Auto Trait Implementations§
impl Freeze for PropertiesContent
impl RefUnwindSafe for PropertiesContent
impl Send for PropertiesContent
impl Sync for PropertiesContent
impl Unpin for PropertiesContent
impl UnsafeUnpin for PropertiesContent
impl UnwindSafe for PropertiesContent
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