pub struct ValidationVerdict {
pub is_valid: bool,
pub reason: String,
}Expand description
Result of message validation.
Fields§
§is_valid: bool§reason: StringTrait Implementations§
Source§impl Clone for ValidationVerdict
impl Clone for ValidationVerdict
Source§fn clone(&self) -> ValidationVerdict
fn clone(&self) -> ValidationVerdict
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 moreAuto Trait Implementations§
impl Freeze for ValidationVerdict
impl RefUnwindSafe for ValidationVerdict
impl Send for ValidationVerdict
impl Sync for ValidationVerdict
impl Unpin for ValidationVerdict
impl UnsafeUnpin for ValidationVerdict
impl UnwindSafe for ValidationVerdict
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