pub struct LogInclusion {
pub log: String,
pub included: bool,
}Expand description
One log’s inclusion-verification result.
Fields§
§log: StringLog name.
included: boolWhether a valid inclusion proof was verified for the artifact.
Trait Implementations§
Source§impl Clone for LogInclusion
impl Clone for LogInclusion
Source§fn clone(&self) -> LogInclusion
fn clone(&self) -> LogInclusion
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 LogInclusion
impl Debug for LogInclusion
Source§impl<'de> Deserialize<'de> for LogInclusion
impl<'de> Deserialize<'de> for LogInclusion
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 LogInclusion
impl RefUnwindSafe for LogInclusion
impl Send for LogInclusion
impl Sync for LogInclusion
impl Unpin for LogInclusion
impl UnsafeUnpin for LogInclusion
impl UnwindSafe for LogInclusion
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