pub enum EmbeddingOptions {
Node2Vec(Node2VecOptions),
GraphSage(GraphSageOptions),
FastRandomProjection(FastRpOptions),
HashGnn(HashGnnOptions),
}Expand description
One embedding-v1 option family.
Variants§
Node2Vec(Node2VecOptions)
analyze(by="node2vec").
GraphSage(GraphSageOptions)
analyze(by="graphsage").
FastRandomProjection(FastRpOptions)
analyze(by="fast_random_projection").
HashGnn(HashGnnOptions)
analyze(by="hashgnn").
Trait Implementations§
Source§impl Clone for EmbeddingOptions
impl Clone for EmbeddingOptions
Source§fn clone(&self) -> EmbeddingOptions
fn clone(&self) -> EmbeddingOptions
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 EmbeddingOptions
impl Debug for EmbeddingOptions
Source§impl PartialEq for EmbeddingOptions
impl PartialEq for EmbeddingOptions
impl StructuralPartialEq for EmbeddingOptions
Auto Trait Implementations§
impl Freeze for EmbeddingOptions
impl RefUnwindSafe for EmbeddingOptions
impl Send for EmbeddingOptions
impl Sync for EmbeddingOptions
impl Unpin for EmbeddingOptions
impl UnsafeUnpin for EmbeddingOptions
impl UnwindSafe for EmbeddingOptions
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