pub struct PartialArg {
pub null_value: Option<String>,
pub number_value: Option<f64>,
pub string_value: Option<String>,
pub bool_value: Option<bool>,
pub json_path: Option<String>,
pub will_continue: Option<bool>,
}Expand description
部分参数值(函数调用流式参数)。
Fields§
§null_value: Option<String>§number_value: Option<f64>§string_value: Option<String>§bool_value: Option<bool>§json_path: Option<String>§will_continue: Option<bool>Trait Implementations§
Source§impl Clone for PartialArg
impl Clone for PartialArg
Source§fn clone(&self) -> PartialArg
fn clone(&self) -> PartialArg
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 PartialArg
impl Debug for PartialArg
Source§impl<'de> Deserialize<'de> for PartialArg
impl<'de> Deserialize<'de> for PartialArg
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
Auto Trait Implementations§
impl Freeze for PartialArg
impl RefUnwindSafe for PartialArg
impl Send for PartialArg
impl Sync for PartialArg
impl Unpin for PartialArg
impl UnsafeUnpin for PartialArg
impl UnwindSafe for PartialArg
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