pub struct TestFilterResponse {
pub result: String,
pub logs: Vec<String>,
}Expand description
Result of a test_filter call.
Fields§
§result: StringFilter output as a JSON string. Shape depends on the dataset and the user’s filter function.
logs: Vec<String>Log lines emitted by the filter function during evaluation.
Trait Implementations§
Source§impl Clone for TestFilterResponse
impl Clone for TestFilterResponse
Source§fn clone(&self) -> TestFilterResponse
fn clone(&self) -> TestFilterResponse
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 TestFilterResponse
impl Debug for TestFilterResponse
Source§impl<'de> Deserialize<'de> for TestFilterResponse
impl<'de> Deserialize<'de> for TestFilterResponse
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 TestFilterResponse
impl RefUnwindSafe for TestFilterResponse
impl Send for TestFilterResponse
impl Sync for TestFilterResponse
impl Unpin for TestFilterResponse
impl UnsafeUnpin for TestFilterResponse
impl UnwindSafe for TestFilterResponse
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