pub struct BootParametersQuery {
pub hsm_group: Option<String>,
pub nodes: Option<String>,
}Expand description
Query parameters for GET /api/v1/boot-parameters.
Fields§
§hsm_group: Option<String>HSM group whose members’ boot parameters should be returned.
nodes: Option<String>Explicit comma-separated xnames; mutually exclusive with
hsm_group.
Trait Implementations§
Source§impl Debug for BootParametersQuery
impl Debug for BootParametersQuery
Source§impl<'de> Deserialize<'de> for BootParametersQuery
impl<'de> Deserialize<'de> for BootParametersQuery
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 BootParametersQuery
impl IntoParams for BootParametersQuery
Source§fn into_params(
parameter_in_provider: impl Fn() -> Option<ParameterIn>,
) -> Vec<Parameter>
fn into_params( parameter_in_provider: impl Fn() -> Option<ParameterIn>, ) -> Vec<Parameter>
Provide
Vec of openapi::path::Parameters to caller. The result is used in utoipa-gen library to
provide OpenAPI parameter information for the endpoint using the parameters.Auto Trait Implementations§
impl Freeze for BootParametersQuery
impl RefUnwindSafe for BootParametersQuery
impl Send for BootParametersQuery
impl Sync for BootParametersQuery
impl Unpin for BootParametersQuery
impl UnsafeUnpin for BootParametersQuery
impl UnwindSafe for BootParametersQuery
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