pub struct GetTemplateParams {
pub name: Option<String>,
pub group_name: Option<String>,
pub settings_group_name: Option<String>,
pub limit: Option<u8>,
}Expand description
Typed parameters for fetching BOS session templates.
Fields§
§name: Option<String>Exact template name.
group_name: Option<String>Group whose associated templates should be returned.
settings_group_name: Option<String>Operator default from cli.toml’s hsm_group, used
as a fallback for group_name.
limit: Option<u8>Cap on the number of templates returned (most recent first).
Auto Trait Implementations§
impl Freeze for GetTemplateParams
impl RefUnwindSafe for GetTemplateParams
impl Send for GetTemplateParams
impl Sync for GetTemplateParams
impl Unpin for GetTemplateParams
impl UnwindSafe for GetTemplateParams
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