pub struct ChannelVerificationResult {
pub valid: bool,
pub errors: Vec<ChannelVerificationError>,
}Expand description
Result of verifying a channel
Fields§
§valid: boolWhether all verifications passed
errors: Vec<ChannelVerificationError>List of errors found (empty if valid)
Implementations§
Trait Implementations§
Source§impl Debug for ChannelVerificationResult
impl Debug for ChannelVerificationResult
Auto Trait Implementations§
impl Freeze for ChannelVerificationResult
impl RefUnwindSafe for ChannelVerificationResult
impl Send for ChannelVerificationResult
impl Sync for ChannelVerificationResult
impl Unpin for ChannelVerificationResult
impl UnsafeUnpin for ChannelVerificationResult
impl UnwindSafe for ChannelVerificationResult
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