pub struct TendrilReport<T: TendrilLog> {
pub raw_tendril: RawTendril,
pub log: Result<T, InvalidTendrilError>,
}Expand description
Generic report format for any operation on a RawTendril
Fields§
§raw_tendril: RawTendrilThe original tendril bundle that this tendril was expanded from.
log: Result<T, InvalidTendrilError>Result containing the log from the operation, provided
the tendril was valid.
Otherwise, it contains the InvalidTendrilError.
Trait Implementations§
Source§impl<T: Clone + TendrilLog> Clone for TendrilReport<T>
impl<T: Clone + TendrilLog> Clone for TendrilReport<T>
Source§fn clone(&self) -> TendrilReport<T>
fn clone(&self) -> TendrilReport<T>
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 moreSource§impl<T: Debug + TendrilLog> Debug for TendrilReport<T>
impl<T: Debug + TendrilLog> Debug for TendrilReport<T>
Source§impl<T: PartialEq + TendrilLog> PartialEq for TendrilReport<T>
impl<T: PartialEq + TendrilLog> PartialEq for TendrilReport<T>
impl<T: Eq + TendrilLog> Eq for TendrilReport<T>
impl<T: TendrilLog> StructuralPartialEq for TendrilReport<T>
Auto Trait Implementations§
impl<T> Freeze for TendrilReport<T>where
T: Freeze,
impl<T> RefUnwindSafe for TendrilReport<T>where
T: RefUnwindSafe,
impl<T> Send for TendrilReport<T>where
T: Send,
impl<T> Sync for TendrilReport<T>where
T: Sync,
impl<T> Unpin for TendrilReport<T>where
T: Unpin,
impl<T> UnsafeUnpin for TendrilReport<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for TendrilReport<T>where
T: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.