pub struct BindOptions {
pub non_recursive: Option<bool>,
pub propagation: Option<String>,
}Fields§
§non_recursive: Option<bool>§propagation: Option<String>Implementations§
Source§impl BindOptions
impl BindOptions
pub fn new() -> BindOptions
Trait Implementations§
Source§impl Clone for BindOptions
impl Clone for BindOptions
Source§fn clone(&self) -> BindOptions
fn clone(&self) -> BindOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BindOptions
impl Debug for BindOptions
Source§impl<'de> Deserialize<'de> for BindOptions
impl<'de> Deserialize<'de> for BindOptions
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 FromStr for BindOptions
Converts Query Parameters representation (style=form, explode=false) to a BindOptions value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for BindOptions
Converts Query Parameters representation (style=form, explode=false) to a BindOptions value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for BindOptions
impl PartialEq for BindOptions
Source§impl Serialize for BindOptions
impl Serialize for BindOptions
Source§impl ToString for BindOptions
Converts the BindOptions value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for BindOptions
Converts the BindOptions value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl Validate for BindOptions
impl Validate for BindOptions
Source§impl<'v_a> ValidateArgs<'v_a> for BindOptions
impl<'v_a> ValidateArgs<'v_a> for BindOptions
impl StructuralPartialEq for BindOptions
Auto Trait Implementations§
impl Freeze for BindOptions
impl RefUnwindSafe for BindOptions
impl Send for BindOptions
impl Sync for BindOptions
impl Unpin for BindOptions
impl UnwindSafe for BindOptions
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