[−][src]Struct indradb::PipeVertexQuery
Gets the vertices associated with edges.
Generally, you shouldn't need to construct this directly, but rather call
.outbound() or .inbound() on an edge query.
Fields
inner: Box<EdgeQuery>The edge query to build off of.
direction: EdgeDirectionWhether to get outbound or inbound vertices on the edges.
limit: u32Limits the number of vertices to get.
t: Option<Type>Filters the type of vertices returned.
Implementations
impl PipeVertexQuery[src]
pub fn new(inner: Box<EdgeQuery>, direction: EdgeDirection, limit: u32) -> Self[src]
Creates a new pipe vertex query.
Arguments
inner- The edge query to build off of.direction- Whether to get outbound or inbound vertices on the edges.limit- Limits the number of vertices to get.
pub fn t(self, t: Type) -> Self[src]
Trait Implementations
impl Clone for PipeVertexQuery[src]
pub fn clone(&self) -> PipeVertexQuery[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PipeVertexQuery[src]
impl Eq for PipeVertexQuery[src]
impl From<PipeVertexQuery> for VertexQuery[src]
pub fn from(query: PipeVertexQuery) -> Self[src]
impl PartialEq<PipeVertexQuery> for PipeVertexQuery[src]
pub fn eq(&self, other: &PipeVertexQuery) -> bool[src]
pub fn ne(&self, other: &PipeVertexQuery) -> bool[src]
impl StructuralEq for PipeVertexQuery[src]
impl StructuralPartialEq for PipeVertexQuery[src]
impl VertexQueryExt for PipeVertexQuery[src]
pub fn outbound(self, limit: u32) -> PipeEdgeQuery[src]
pub fn inbound(self, limit: u32) -> PipeEdgeQuery[src]
pub fn property<S: Into<String>>(self, name: S) -> VertexPropertyQuery[src]
Auto Trait Implementations
impl RefUnwindSafe for PipeVertexQuery[src]
impl Send for PipeVertexQuery[src]
impl Sync for PipeVertexQuery[src]
impl Unpin for PipeVertexQuery[src]
impl UnwindSafe for PipeVertexQuery[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,