pub struct UngroundedClaim {
pub claim: String,
pub reason: UngroundedReason,
pub requirements: Vec<String>,
}Expand description
A claim that couldn’t be grounded.
Fields§
§claim: StringThe claim attempted.
reason: UngroundedReasonWhy it couldn’t be grounded.
requirements: Vec<String>What would be needed to ground it.
Trait Implementations§
Source§impl Clone for UngroundedClaim
impl Clone for UngroundedClaim
Source§fn clone(&self) -> UngroundedClaim
fn clone(&self) -> UngroundedClaim
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 Debug for UngroundedClaim
impl Debug for UngroundedClaim
Source§impl<'de> Deserialize<'de> for UngroundedClaim
impl<'de> Deserialize<'de> for UngroundedClaim
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 UngroundedClaim
impl RefUnwindSafe for UngroundedClaim
impl Send for UngroundedClaim
impl Sync for UngroundedClaim
impl Unpin for UngroundedClaim
impl UnsafeUnpin for UngroundedClaim
impl UnwindSafe for UngroundedClaim
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