pub struct BlobTarget<P> {
pub path: P,
pub mode: BlobMode,
pub content: BlobContent,
}Expand description
A located ordinary blob and the evidence read from it.
Fields§
§path: P§mode: BlobMode§content: BlobContentTrait Implementations§
Source§impl<P: Clone> Clone for BlobTarget<P>
impl<P: Clone> Clone for BlobTarget<P>
Source§fn clone(&self) -> BlobTarget<P>
fn clone(&self) -> BlobTarget<P>
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<P: Debug> Debug for BlobTarget<P>
impl<P: Debug> Debug for BlobTarget<P>
impl<P: Eq> Eq for BlobTarget<P>
Source§impl<P: PartialEq> PartialEq for BlobTarget<P>
impl<P: PartialEq> PartialEq for BlobTarget<P>
impl<P: PartialEq> StructuralPartialEq for BlobTarget<P>
Auto Trait Implementations§
impl<P> Freeze for BlobTarget<P>where
P: Freeze,
impl<P> RefUnwindSafe for BlobTarget<P>where
P: RefUnwindSafe,
impl<P> Send for BlobTarget<P>where
P: Send,
impl<P> Sync for BlobTarget<P>where
P: Sync,
impl<P> Unpin for BlobTarget<P>where
P: Unpin,
impl<P> UnsafeUnpin for BlobTarget<P>where
P: UnsafeUnpin,
impl<P> UnwindSafe for BlobTarget<P>where
P: UnwindSafe,
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