pub struct Call<A, N = String> {
pub name: N,
pub args: Vec<A>,
}Expand description
Call to a filter identified by a name type N with arguments of type A.
Fields§
§name: NName of the filter, e.g. map
args: Vec<A>Arguments of the filter, e.g. ["f"]
Implementations§
Trait Implementations§
source§impl<'de, A, N> Deserialize<'de> for Call<A, N>where
A: Deserialize<'de>,
N: Deserialize<'de>,
impl<'de, A, N> Deserialize<'de> for Call<A, N>where A: Deserialize<'de>, N: Deserialize<'de>,
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<A, N> RefUnwindSafe for Call<A, N>where A: RefUnwindSafe, N: RefUnwindSafe,
impl<A, N> Send for Call<A, N>where A: Send, N: Send,
impl<A, N> Sync for Call<A, N>where A: Sync, N: Sync,
impl<A, N> Unpin for Call<A, N>where A: Unpin, N: Unpin,
impl<A, N> UnwindSafe for Call<A, N>where A: UnwindSafe, N: UnwindSafe,
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