pub struct ClaimMatch {
pub entity: AeoEntity,
pub claim_id: String,
pub predicate: String,
pub value: Value,
}Expand description
Match for /find-by-claim.
Fields§
§entity: AeoEntityThe entity that made the claim.
claim_id: StringClaim id within the entity’s claims array.
predicate: StringThe matched predicate.
value: ValueThe matched value (verbatim).
Trait Implementations§
Source§impl Clone for ClaimMatch
impl Clone for ClaimMatch
Source§fn clone(&self) -> ClaimMatch
fn clone(&self) -> ClaimMatch
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 ClaimMatch
impl Debug for ClaimMatch
Source§impl<'de> Deserialize<'de> for ClaimMatch
impl<'de> Deserialize<'de> for ClaimMatch
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 ClaimMatch
impl RefUnwindSafe for ClaimMatch
impl Send for ClaimMatch
impl Sync for ClaimMatch
impl Unpin for ClaimMatch
impl UnsafeUnpin for ClaimMatch
impl UnwindSafe for ClaimMatch
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