pub struct SurfacePath {
pub node: SurfaceNodeRef,
pub segments: Vec<SurfacePathSegment>,
pub span: Span,
}Expand description
Parsed scalar path before schema resolution.
Fields§
§node: SurfaceNodeRef§segments: Vec<SurfacePathSegment>§span: SpanTrait Implementations§
Source§impl Clone for SurfacePath
impl Clone for SurfacePath
Source§fn clone(&self) -> SurfacePath
fn clone(&self) -> SurfacePath
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 SurfacePath
impl Debug for SurfacePath
Source§impl PartialEq for SurfacePath
impl PartialEq for SurfacePath
Source§fn eq(&self, other: &SurfacePath) -> bool
fn eq(&self, other: &SurfacePath) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SurfacePath
impl StructuralPartialEq for SurfacePath
Auto Trait Implementations§
impl Freeze for SurfacePath
impl RefUnwindSafe for SurfacePath
impl Send for SurfacePath
impl Sync for SurfacePath
impl Unpin for SurfacePath
impl UnsafeUnpin for SurfacePath
impl UnwindSafe for SurfacePath
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