pub struct RelationResult {
pub kind: RelationKind,
pub related: bool,
pub depth_exceeded: bool,
}Expand description
Result of a relation check.
Fields§
§kind: RelationKind§depth_exceeded: boolImplementations§
Trait Implementations§
Source§impl Clone for RelationResult
impl Clone for RelationResult
Source§fn clone(&self) -> RelationResult
fn clone(&self) -> RelationResult
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 RelationResult
impl Debug for RelationResult
Source§impl PartialEq for RelationResult
impl PartialEq for RelationResult
impl Copy for RelationResult
impl Eq for RelationResult
impl StructuralPartialEq for RelationResult
Auto Trait Implementations§
impl Freeze for RelationResult
impl RefUnwindSafe for RelationResult
impl Send for RelationResult
impl Sync for RelationResult
impl Unpin for RelationResult
impl UnsafeUnpin for RelationResult
impl UnwindSafe for RelationResult
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.