#[non_exhaustive]pub enum ProjectSysctls {
Map(Vec<ProjectValue<ProjectSysctl>>),
List(Vec<ProjectValue<String>>),
}Expand description
Effective service sysctls with mapping/list form and per-entry provenance retained.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Map(Vec<ProjectValue<ProjectSysctl>>)
Ordered mapping entries merged by exact key.
List(Vec<ProjectValue<String>>)
Ordered list items appended without implicit deduplication.
Trait Implementations§
Source§impl Clone for ProjectSysctls
impl Clone for ProjectSysctls
Source§fn clone(&self) -> ProjectSysctls
fn clone(&self) -> ProjectSysctls
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectSysctls
impl Debug for ProjectSysctls
impl Eq for ProjectSysctls
Source§impl PartialEq for ProjectSysctls
impl PartialEq for ProjectSysctls
impl StructuralPartialEq for ProjectSysctls
Auto Trait Implementations§
impl Freeze for ProjectSysctls
impl RefUnwindSafe for ProjectSysctls
impl Send for ProjectSysctls
impl Sync for ProjectSysctls
impl Unpin for ProjectSysctls
impl UnsafeUnpin for ProjectSysctls
impl UnwindSafe for ProjectSysctls
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