pub struct ProjectionTrace {
pub source_ids: Vec<Id>,
pub projection_ids: Vec<Id>,
}Expand description
Trace from projected view back to source structures.
Fields§
§source_ids: Vec<Id>Source structure identifiers.
projection_ids: Vec<Id>Projection identifiers.
Trait Implementations§
Source§impl Clone for ProjectionTrace
impl Clone for ProjectionTrace
Source§fn clone(&self) -> ProjectionTrace
fn clone(&self) -> ProjectionTrace
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 ProjectionTrace
impl Debug for ProjectionTrace
Source§impl Default for ProjectionTrace
impl Default for ProjectionTrace
Source§fn default() -> ProjectionTrace
fn default() -> ProjectionTrace
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectionTrace
impl<'de> Deserialize<'de> for ProjectionTrace
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
Source§impl Hash for ProjectionTrace
impl Hash for ProjectionTrace
Source§impl Ord for ProjectionTrace
impl Ord for ProjectionTrace
Source§fn cmp(&self, other: &ProjectionTrace) -> Ordering
fn cmp(&self, other: &ProjectionTrace) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProjectionTrace
impl PartialEq for ProjectionTrace
Source§fn eq(&self, other: &ProjectionTrace) -> bool
fn eq(&self, other: &ProjectionTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ProjectionTrace
impl PartialOrd for ProjectionTrace
Source§impl Serialize for ProjectionTrace
impl Serialize for ProjectionTrace
impl Eq for ProjectionTrace
impl StructuralPartialEq for ProjectionTrace
Auto Trait Implementations§
impl Freeze for ProjectionTrace
impl RefUnwindSafe for ProjectionTrace
impl Send for ProjectionTrace
impl Sync for ProjectionTrace
impl Unpin for ProjectionTrace
impl UnsafeUnpin for ProjectionTrace
impl UnwindSafe for ProjectionTrace
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