pub struct GetConfigurationParams {
pub name: Option<String>,
pub pattern: Option<String>,
pub group_name: Option<String>,
pub settings_hsm_group_name: Option<String>,
pub since: Option<NaiveDateTime>,
pub until: Option<NaiveDateTime>,
pub limit: Option<u8>,
}Expand description
Typed parameters for fetching CFS configurations.
Fields§
§name: Option<String>Exact configuration name.
pattern: Option<String>Glob pattern matched against configuration names; mutually
exclusive with name.
group_name: Option<String>Group whose associated configurations should be returned.
settings_hsm_group_name: Option<String>Operator default from cli.toml’s hsm_group, used
as a fallback for group_name.
since: Option<NaiveDateTime>Lower-bound timestamp (configurations last updated at or after this point).
until: Option<NaiveDateTime>Upper-bound timestamp (configurations last updated at or before this point).
limit: Option<u8>Cap on the number of configurations returned (most recent first).
Auto Trait Implementations§
impl Freeze for GetConfigurationParams
impl RefUnwindSafe for GetConfigurationParams
impl Send for GetConfigurationParams
impl Sync for GetConfigurationParams
impl Unpin for GetConfigurationParams
impl UnwindSafe for GetConfigurationParams
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