pub struct ValidateEventResponse {
pub valid: bool,
pub errors: Option<Vec<String>>,
}Expand description
Response for event validation
Fields§
§valid: bool§errors: Option<Vec<String>>Trait Implementations§
Source§impl Debug for ValidateEventResponse
impl Debug for ValidateEventResponse
Auto Trait Implementations§
impl Freeze for ValidateEventResponse
impl RefUnwindSafe for ValidateEventResponse
impl Send for ValidateEventResponse
impl Sync for ValidateEventResponse
impl Unpin for ValidateEventResponse
impl UnsafeUnpin for ValidateEventResponse
impl UnwindSafe for ValidateEventResponse
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