pub struct ApproveParameters {
pub silent_bootstrap: bool,
}Expand description
Query parameters to the /approve endpoint.
Fields§
§silent_bootstrap: boolBootstrap the pipeline with output connectors disabled.
Trait Implementations§
Source§impl Debug for ApproveParameters
impl Debug for ApproveParameters
Source§impl<'de> Deserialize<'de> for ApproveParameters
impl<'de> Deserialize<'de> for ApproveParameters
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 ApproveParameters
impl IntoParams for ApproveParameters
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 ApproveParameters
impl RefUnwindSafe for ApproveParameters
impl Send for ApproveParameters
impl Sync for ApproveParameters
impl Unpin for ApproveParameters
impl UnsafeUnpin for ApproveParameters
impl UnwindSafe for ApproveParameters
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