pub struct ChannelEvidence {
pub channel: Channel,
pub evidence: Vec<String>,
}Expand description
One channel and the evidence behind it.
Fields§
§channel: ChannelThe channel.
evidence: Vec<String>The files and facts that make it viable.
Trait Implementations§
Source§impl Clone for ChannelEvidence
impl Clone for ChannelEvidence
Source§fn clone(&self) -> ChannelEvidence
fn clone(&self) -> ChannelEvidence
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChannelEvidence
impl Debug for ChannelEvidence
Auto Trait Implementations§
impl Freeze for ChannelEvidence
impl RefUnwindSafe for ChannelEvidence
impl Send for ChannelEvidence
impl Sync for ChannelEvidence
impl Unpin for ChannelEvidence
impl UnsafeUnpin for ChannelEvidence
impl UnwindSafe for ChannelEvidence
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