pub struct ListFunction {
pub data: Vec<ListFunctionItem>,
}Expand description
Response from listing functions.
Fields§
§data: Vec<ListFunctionItem>List of available functions.
Trait Implementations§
Source§impl Clone for ListFunction
impl Clone for ListFunction
Source§fn clone(&self) -> ListFunction
fn clone(&self) -> ListFunction
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 ListFunction
impl Debug for ListFunction
Source§impl<'de> Deserialize<'de> for ListFunction
impl<'de> Deserialize<'de> for ListFunction
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 ListFunction
impl RefUnwindSafe for ListFunction
impl Send for ListFunction
impl Sync for ListFunction
impl Unpin for ListFunction
impl UnwindSafe for ListFunction
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