pub struct TemplateQuery {
pub name: Option<String>,
pub hsm_group: Option<String>,
pub limit: Option<u8>,
}Expand description
Query parameters for GET /api/v1/templates.
Fields§
§name: Option<String>Exact template name.
hsm_group: Option<String>HSM group whose associated templates should be returned.
limit: Option<u8>Cap on the number of templates returned (most recent first).
Trait Implementations§
Source§impl Debug for TemplateQuery
impl Debug for TemplateQuery
Source§impl<'de> Deserialize<'de> for TemplateQuery
impl<'de> Deserialize<'de> for TemplateQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IntoParams for TemplateQuery
impl IntoParams for TemplateQuery
Auto Trait Implementations§
impl Freeze for TemplateQuery
impl RefUnwindSafe for TemplateQuery
impl Send for TemplateQuery
impl Sync for TemplateQuery
impl Unpin for TemplateQuery
impl UnwindSafe for TemplateQuery
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