[][src]Struct graphannis::graph::Match

#[repr(C)]
pub struct Match { /* fields omitted */ }

A match is the result of a query on an annotation storage.

Methods

impl Match[src]

pub fn get_node(&self) -> NodeID[src]

Get the node identifier this match refers to.

pub fn extract_annotation(&self, graph: &Graph) -> Option<Annotation>[src]

Extract the annotation for this match . The annotation value is retrieved from the graph given as argument.

pub fn different_to_all(&self, other: &Vec<Match>) -> bool[src]

Returns true if this match is different to all the other matches given as argument.

A single match is different if the node ID or the annotation key are different.

pub fn different_to(&self, other: &Match) -> bool[src]

Returns true if this match is different to the other match given as argument.

A single match is different if the node ID or the annotation key are different.

Trait Implementations

impl PartialEq<Match> for Match[src]

impl Clone for Match[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Match[src]

impl PartialOrd<Match> for Match[src]

impl Eq for Match[src]

impl Into<Match> for (Edge, usize)[src]

impl Into<Match> for (NodeID, usize)[src]

impl Ord for Match[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Debug for Match[src]

impl Hash for Match[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Unpin for Match

impl Sync for Match

impl Send for Match

impl RefUnwindSafe for Match

impl UnwindSafe for Match

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,