pub struct WrappedCandidTypeFunction {
pub args: Vec<WrappedCandidType>,
pub rets: Vec<WrappedCandidType>,
pub annotation: Option<FunctionAnnotation>,
pub name: Option<String>,
}Expand description
函数结构体
Fields§
§args: Vec<WrappedCandidType>args
rets: Vec<WrappedCandidType>results
annotation: Option<FunctionAnnotation>annotation update query
name: Option<String>有时候有名字
Implementations§
Trait Implementations§
Source§impl Clone for WrappedCandidTypeFunction
impl Clone for WrappedCandidTypeFunction
Source§fn clone(&self) -> WrappedCandidTypeFunction
fn clone(&self) -> WrappedCandidTypeFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WrappedCandidTypeFunction
impl Debug for WrappedCandidTypeFunction
Source§impl<'de> Deserialize<'de> for WrappedCandidTypeFunction
impl<'de> Deserialize<'de> for WrappedCandidTypeFunction
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
impl Eq for WrappedCandidTypeFunction
impl StructuralPartialEq for WrappedCandidTypeFunction
Auto Trait Implementations§
impl Freeze for WrappedCandidTypeFunction
impl RefUnwindSafe for WrappedCandidTypeFunction
impl Send for WrappedCandidTypeFunction
impl Sync for WrappedCandidTypeFunction
impl Unpin for WrappedCandidTypeFunction
impl UnsafeUnpin for WrappedCandidTypeFunction
impl UnwindSafe for WrappedCandidTypeFunction
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