pub enum GraphFunction {
Show 23 variants
Id,
Labels,
Type,
Length,
StartNode,
EndNode,
Nodes,
Relationships,
Coalesce,
ToString,
ToInteger,
ToFloat,
Abs,
Floor,
Ceil,
Round,
Lower,
Upper,
Trim,
Substring,
Size,
Head,
Last,
}Variants§
Id
Labels
Type
Length
StartNode
EndNode
Nodes
Relationships
Coalesce
ToString
ToInteger
ToFloat
Abs
Floor
Ceil
Round
Lower
Upper
Trim
Substring
Size
Head
Last
Trait Implementations§
Source§impl Clone for GraphFunction
impl Clone for GraphFunction
Source§fn clone(&self) -> GraphFunction
fn clone(&self) -> GraphFunction
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 GraphFunction
impl Debug for GraphFunction
Source§impl Ord for GraphFunction
impl Ord for GraphFunction
Source§fn cmp(&self, other: &GraphFunction) -> Ordering
fn cmp(&self, other: &GraphFunction) -> 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 GraphFunction
impl PartialEq for GraphFunction
Source§fn eq(&self, other: &GraphFunction) -> bool
fn eq(&self, other: &GraphFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for GraphFunction
impl PartialOrd for GraphFunction
impl Copy for GraphFunction
impl Eq for GraphFunction
impl StructuralPartialEq for GraphFunction
Auto Trait Implementations§
impl Freeze for GraphFunction
impl RefUnwindSafe for GraphFunction
impl Send for GraphFunction
impl Sync for GraphFunction
impl Unpin for GraphFunction
impl UnsafeUnpin for GraphFunction
impl UnwindSafe for GraphFunction
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more