pub struct GetConfigurationParams {
pub name: Option<String>,
pub pattern: Option<String>,
pub hsm_group: 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.
hsm_group: Option<String>HSM group whose associated configurations should be returned.
settings_hsm_group_name: Option<String>Operator default from cli.toml’s parent_hsm_group, used
as a fallback for hsm_group.
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.