pub struct Call<A = Arg, 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
source§impl<A: PartialEq, N: PartialEq> PartialEq for Call<A, N>
impl<A: PartialEq, N: PartialEq> PartialEq for Call<A, N>
impl<A: Eq, N: Eq> Eq for Call<A, N>
impl<A, N> StructuralEq for Call<A, N>
impl<A, N> StructuralPartialEq for Call<A, N>
Auto Trait Implementations§
impl<A, N> RefUnwindSafe for Call<A, N>where
A: RefUnwindSafe,
N: RefUnwindSafe,
impl<A, N> Send for Call<A, N>
impl<A, N> Sync for Call<A, N>
impl<A, N> Unpin for Call<A, N>
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