pub enum ReturnSpec {
Node(String),
Edge(String),
Property {
variable: String,
property: String,
},
Count,
}
Expand description
Return specification
Variants§
Trait Implementations§
Source§impl Clone for ReturnSpec
impl Clone for ReturnSpec
Source§fn clone(&self) -> ReturnSpec
fn clone(&self) -> ReturnSpec
Returns a duplicate of the value. Read more
1.0.0 · 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 ReturnSpec
impl Debug for ReturnSpec
Source§impl<'de> Deserialize<'de> for ReturnSpec
impl<'de> Deserialize<'de> for ReturnSpec
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
Auto Trait Implementations§
impl Freeze for ReturnSpec
impl RefUnwindSafe for ReturnSpec
impl Send for ReturnSpec
impl Sync for ReturnSpec
impl Unpin for ReturnSpec
impl UnwindSafe for ReturnSpec
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